Die Datei StructExampleHolder.java


package Struct;

final public class StructExampleHolder implements org.omg.CORBA.portable.Streamable {

public Struct.StructExample value;

public StructExampleHolder() {

}

public StructExampleHolder(Struct.StructExample value) {

this.value = value;

}

public void _read(org.omg.CORBA.portable.InputStream input) {

value = StructExampleHelper.read(input);

}

public void _write(org.omg.CORBA.portable.OutputStream output) {

StructExampleHelper.write(output, value);

}

public org.omg.CORBA.TypeCode _type() {

return StructExampleHelper.type();

}

}


Die Quelle: StructExampleHolder.java