iiopprofiletemplate.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 36 行
JAVA
36 行
/* * @(#)IIOPProfileTemplate.java 1.15 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.ior.iiop;import java.util.List ;import java.util.Iterator ;import org.omg.CORBA_2_3.portable.OutputStream ;import com.sun.corba.se.spi.ior.TaggedProfileTemplate ;import com.sun.corba.se.spi.ior.iiop.GIOPVersion ;import com.sun.corba.se.spi.orb.ORB ;/** * IIOPProfileTemplate represents the parts of an IIOPProfile that are independent * of the object identifier. It is a container of tagged components. */public interface IIOPProfileTemplate extends TaggedProfileTemplate{ /** Return the GIOP version of this profile. */ public GIOPVersion getGIOPVersion() ; /** Return the IIOP address from the IIOP profile. This is called the * primary address here since other addresses may be contained in * components. */ public IIOPAddress getPrimaryAddress() ;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?