Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
if (!(obj instanceof ORBTypeComponentImpl))
return false ;
ORBTypeComponentImpl other = (ORBTypeComponentImpl)obj ;
return ORBType == other.ORBType ;
|
public int | getId()
return TAG_ORB_TYPE.value ; // 0 in CORBA 2.3.1 13.6.3
|
public int | getORBType()
return ORBType ;
|
public int | hashCode()
return ORBType ;
|
public java.lang.String | toString()
return "ORBTypeComponentImpl[ORBType=" + ORBType + "]" ;
|
public void | writeContents(org.omg.CORBA_2_3.portable.OutputStream os)
os.write_ulong( ORBType ) ;
|