FileDocCategorySizeDatePackage
ValueBaseHelper.javaAPI DocJava SE 5 API1878Fri Aug 26 14:58:32 BST 2005org.omg.CORBA

ValueBaseHelper

public abstract class ValueBaseHelper extends Object
The Helper for ValueBase. For more information on Helper files, see "Generated Files: Helper Files".

Fields Summary
private static String
_id
private static org.omg.CORBA.TypeCode
__typeCode
Constructors Summary
Methods Summary
public static java.io.Serializableextract(org.omg.CORBA.Any a)

	return read (a.create_input_stream ());
    
public static java.lang.Stringid()

	return _id;
    
public static voidinsert(org.omg.CORBA.Any a, java.io.Serializable that)


           
    
	org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
	a.type (type ());
	write (out, that);
	a.read_value (out.create_input_stream (), type ());
    
public static java.io.Serializableread(org.omg.CORBA.portable.InputStream istream)

	return ((org.omg.CORBA_2_3.portable.InputStream)istream).read_value ();
    
public static synchronized org.omg.CORBA.TypeCodetype()

         
    
	if (__typeCode == null)
	    {
		__typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (TCKind.tk_value);
	    }
	return __typeCode;
    
public static voidwrite(org.omg.CORBA.portable.OutputStream ostream, java.io.Serializable value)

	((org.omg.CORBA_2_3.portable.OutputStream)ostream).write_value (value);