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

📄 objectkeyfactory.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)ObjectKeyFactory.java	1.4 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.spi.ior;import org.omg.CORBA_2_3.portable.InputStream ;import com.sun.corba.se.spi.ior.ObjectKey ;import com.sun.corba.se.spi.ior.ObjectKeyTemplate ;/** Construct ObjectKey and ObjectKeyTemplate instances from their * CDR-marshalled representation. */public interface ObjectKeyFactory {    /** Create an ObjectKey from its octet sequence representation.     */    ObjectKey create( byte[] key ) ;    /** Create an ObjectKeyTemplate from its representation     * in an InputStream.     */    ObjectKeyTemplate createTemplate( InputStream is ) ;}

⌨️ 快捷键说明

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