Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
/*
* File: ./EuropaAI/EuropaHolder.java
* From: europa.idl
* Date: Thu Dec 23 02:08:42 1999
* By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18
*/
package EuropaAI;
public final class EuropaHolder
implements org.omg.CORBA.portable.Streamable{
// instance variable
public EuropaAI.Europa value;
// constructors
public EuropaHolder() {
this(null);
}
public EuropaHolder(EuropaAI.Europa __arg) {
value = __arg;
}
public void _write(org.omg.CORBA.portable.OutputStream out) {
EuropaAI.EuropaHelper.write(out, value);
}
public void _read(org.omg.CORBA.portable.InputStream in) {
value = EuropaAI.EuropaHelper.read(in);
}
public org.omg.CORBA.TypeCode _type() {
return EuropaAI.EuropaHelper.type();
}
}