You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
1.7 KiB
90 lines
1.7 KiB
/*
|
|
* Copyright (c) 1998, 2003, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
/*
|
|
* Licensed Materials - Property of IBM
|
|
* RMI-IIOP v1.0
|
|
* Copyright IBM Corp. 1998 1999 All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA_2_3;
|
|
|
|
/**
|
|
* A class extending <code>org.omg.CORBA.ORB</code> to make the ORB
|
|
* portable under the OMG CORBA version 2.3 specification.
|
|
*/
|
|
public abstract class ORB extends org.omg.CORBA.ORB {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public org.omg.CORBA.portable.ValueFactory register_value_factory(String id,
|
|
org.omg.CORBA.portable.ValueFactory factory)
|
|
{
|
|
throw new org.omg.CORBA.NO_IMPLEMENT();
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public void unregister_value_factory(String id)
|
|
{
|
|
throw new org.omg.CORBA.NO_IMPLEMENT();
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public org.omg.CORBA.portable.ValueFactory lookup_value_factory(String id)
|
|
{
|
|
throw new org.omg.CORBA.NO_IMPLEMENT();
|
|
}
|
|
|
|
|
|
/**
|
|
* @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
|
|
* comments for unimplemented features</a>
|
|
*/
|
|
// always return a ValueDef or throw BAD_PARAM if
|
|
// <em>repid</em> does not represent a valuetype
|
|
public org.omg.CORBA.Object get_value_def(String repid)
|
|
throws org.omg.CORBA.BAD_PARAM {
|
|
throw new org.omg.CORBA.NO_IMPLEMENT();
|
|
}
|
|
|
|
|
|
/**
|
|
* @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
|
|
* comments for unimplemented features</a>
|
|
*/
|
|
public void set_delegate(java.lang.Object wrapper) {
|
|
throw new org.omg.CORBA.NO_IMPLEMENT();
|
|
}
|
|
|
|
|
|
}
|