package test.crispy.example.service.corba;
/**
* test/crispy/example/service/corba/CustomerHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from Echo.idl
* Donnerstag, 13. April 2006 19.25 Uhr CEST
*/
public final class CustomerHolder implements org.omg.CORBA.portable.Streamable
{
public test.crispy.example.service.corba.Customer value = null;
public CustomerHolder ()
{
}
public CustomerHolder (test.crispy.example.service.corba.Customer initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = test.crispy.example.service.corba.CustomerHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
test.crispy.example.service.corba.CustomerHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return test.crispy.example.service.corba.CustomerHelper.type ();
}
}
|