⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 repositoryidutility.java

📁 java jdk 1.4的源码
💻 JAVA
字号:
/* * @(#)RepositoryIdUtility.java	1.4 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.internal.orbutil;import org.omg.CORBA.ORB;import com.sun.corba.se.internal.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();}

⌨️ 快捷键说明

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