144145146147148149150151152153
{ return new EncapsulationFactoryBase(TAG_ORB_TYPE.value) { public Identifiable readContents( InputStream in ) { int type = in.read_ulong() ; Identifiable comp = new ORBTypeComponentImpl( type ) ; return comp ; } } ; }
152153154155156157158
} ; } public static ORBTypeComponent makeORBTypeComponent( int type ) { return new ORBTypeComponentImpl( type ) ; }