📄 orb.java
字号:
/* ORB.java -- Copyright (C) 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING. If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library. Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule. An independent module is a module which is not derived fromor based on this library. If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so. If you do not wish to do so, delete thisexception statement from your version. */package org.omg.CORBA_2_3;import org.omg.CORBA.BAD_PARAM;import org.omg.CORBA.NO_IMPLEMENT;import org.omg.CORBA.portable.ValueFactory;/** * This class should provide the {@link org.omg.CORBA.ORB) ORB extensions, * defined in the OMG CORBA version 2.3 specification. However in the * Sun's API specification is written that this functionality is not * implemented at least at least till 1.4 inclusive. * * @author Audrius Meskauskas (AudriusA@Bioinformatics.org) */public abstract class ORB extends org.omg.CORBA.ORB{ /** * Should return a defintion of the value type as described * in the interface repository. * * @param repository_id a value type repository id. * * @return never * @throws BAD_PARAM never * @throws NO_IMPLEMENT, always. * * @see org.omg.CORBA.portable.ValueBase */ public org.omg.CORBA.Object get_value_def(String repository_id) throws BAD_PARAM { throw new NO_IMPLEMENT(); } /** * This should register the given value factory under the given * repository id. * * @param repository_id a repository id * * @return never * @throws NO_IMPLEMENT, always. */ public ValueFactory register_value_factory(String repository_id, ValueFactory factory ) { throw new NO_IMPLEMENT(); } /** * This should unregister the given value factory under the given * repository id. * * @param repository_id a repository id * * @return never * @throws NO_IMPLEMENT, always. */ public void unregister_value_factory(String id) { throw new NO_IMPLEMENT(); } /** * This should find a suitable value factory to create an instance * of the value type when is being read (unmarshaled) from the * stream. * * @param repository_id a repository id * * @return never * @throws NO_IMPLEMENT, always. */ public ValueFactory lookup_value_factory(String repository_id) { throw new NO_IMPLEMENT(); } /** * This method is called by RMI-IIOP {@link javax.rmi.Tie#orb(ORB)}, * passing <code>this</code> as parameter. The ORB will try to connect * that tie as one of its objects. */ public void set_delegate(java.lang.Object wrapper) { throw new NO_IMPLEMENT(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -