/*
* File: ./THISORTHATSERVERHOLDER.JAVA
* From: THISORTHATSERVER.IDL
* Date: Thu Apr 15 21:42:40 1999
* By: C:\PROGRA~1\JDK12~1.1\BIN\IDLTOJ~1.EXE Java IDL 1.2 Aug 18 1998 16:25:34
*/
public final class ThisOrThatServerHolder
implements org.omg.CORBA.portable.Streamable{
// instance variable
public ThisOrThatServer value;
// constructors
public ThisOrThatServerHolder() {
this(null);
}
public ThisOrThatServerHolder(ThisOrThatServer __arg) {
value = __arg;
}
public void _write(org.omg.CORBA.portable.OutputStream out) {
ThisOrThatServerHelper.write(out, value);
}
public void _read(org.omg.CORBA.portable.InputStream in) {
value = ThisOrThatServerHelper.read(in);
}
public org.omg.CORBA.TypeCode _type() {
return ThisOrThatServerHelper.type();
}
}
|