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

📄 generictaggedcomponent.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)GenericTaggedComponent.java	1.10 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.ior;import org.omg.CORBA.ORB ;import org.omg.CORBA_2_3.portable.InputStream ;import org.omg.CORBA_2_3.portable.OutputStream ;import com.sun.corba.se.spi.ior.iiop.GIOPVersion ;import com.sun.corba.se.spi.ior.TaggedComponent ;/** * @author  */public class GenericTaggedComponent extends GenericIdentifiable     implements TaggedComponent {    public GenericTaggedComponent( int id, InputStream is )     {	super( id, is ) ;    }    public GenericTaggedComponent( int id, byte[] data )     {	super( id, data ) ;    }        /**     * @return org.omg.IOP.TaggedComponent     * @exception      * @author      */    public org.omg.IOP.TaggedComponent getIOPComponent( ORB orb )     {	return new org.omg.IOP.TaggedComponent( getId(), 	    getData() ) ;    }}

⌨️ 快捷键说明

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