repositoryidutility.java

来自「JAVA 所有包」· Java 代码 · 共 42 行

JAVA
42
字号
/* * @(#)RepositoryIdUtility.java	1.8 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.impl.orbutil;import org.omg.CORBA.ORB;import com.sun.corba.se.impl.util.RepositoryId;/** * Utility methods for working with repository IDs. */public interface RepositoryIdUtility{    boolean isChunkedEncoding(int valueTag);    boolean isCodeBasePresent(int valueTag);    // These are currently the same in both RepositoryId and    // RepositoryId_1_3, but provide the constants again here    // to eliminate awkardness when using this interface.    int NO_TYPE_INFO = RepositoryId.kNoTypeInfo;    int SINGLE_REP_TYPE_INFO = RepositoryId.kSingleRepTypeInfo;    int PARTIAL_LIST_TYPE_INFO = RepositoryId.kPartialListTypeInfo;    // Determine how many (if any) repository IDs follow the value    // tag.    int getTypeInfo(int valueTag);    // Accessors for precomputed value tags    int getStandardRMIChunkedNoRepStrId();    int getCodeBaseRMIChunkedNoRepStrId();    int getStandardRMIChunkedId();    int getCodeBaseRMIChunkedId();    int getStandardRMIUnchunkedId();    int getCodeBaseRMIUnchunkedId();    int getStandardRMIUnchunkedNoRepStrId();    int getCodeBaseRMIUnchunkedNoRepStrId();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?