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

📄 iorfactory.java

📁 JAVA 所有包
💻 JAVA
字号:
/* * @(#)IORFactory.java	1.7 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 com.sun.corba.se.spi.orb.ORB ;/** An IORFactory provides the capability of creating IORs.  It contains * some collection of TaggedProfileTemplates, which can be iterated over * for portable interceptors. */public interface IORFactory extends Writeable, MakeImmutable {    /** Construct an IOR containing the given ORB, typeid, and ObjectId.     * The same ObjectId will be used for all TaggedProfileTemplates in     * the IORFactory.     */    IOR makeIOR( ORB orb, String typeid, ObjectId oid ) ;    /** Return true iff this.makeIOR(orb,typeid,oid).isEquivalent(     * other.makeIOR(orb,typeid,oid) for all orb, typeid, and oid.     */    boolean isEquivalent( IORFactory other ) ;}

⌨️ 快捷键说明

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