📄 repositoryidstrings.java
字号:
/* * @(#)RepositoryIdStrings.java 1.3 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 java.io.Serializable;import com.sun.corba.se.internal.io.TypeMismatchException;/** * Factory methods for creating various repository ID strings * and instances. */public interface RepositoryIdStrings{ String createForAnyType(Class type); String createForJavaType(Serializable ser) throws TypeMismatchException; String createForJavaType(Class clz) throws TypeMismatchException; String createSequenceRepID(java.lang.Object ser); String createSequenceRepID(java.lang.Class clazz); RepositoryIdInterface getFromString(String repIdString); String getClassDescValueRepId(); String getWStringValueRepId();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -