FileDocCategorySizeDatePackage
ORBTypeComponentImpl.javaAPI DocJava SE 5 API1294Fri Aug 26 14:54:24 BST 2005com.sun.corba.se.impl.ior.iiop

ORBTypeComponentImpl

public class ORBTypeComponentImpl extends com.sun.corba.se.spi.ior.TaggedComponentBase implements com.sun.corba.se.spi.ior.iiop.ORBTypeComponent
author
Ken Cavanaugh

Fields Summary
private int
ORBType
Constructors Summary
public ORBTypeComponentImpl(int ORBType)

	this.ORBType = ORBType ;
    
Methods Summary
public booleanequals(java.lang.Object obj)

	if (!(obj instanceof ORBTypeComponentImpl))
	    return false ;

	ORBTypeComponentImpl other = (ORBTypeComponentImpl)obj ;

	return ORBType == other.ORBType ;
    
public intgetId()

	return TAG_ORB_TYPE.value ; // 0 in CORBA 2.3.1 13.6.3
    
public intgetORBType()

	return ORBType ;
    
public inthashCode()

	return ORBType ;
    
public java.lang.StringtoString()

	return "ORBTypeComponentImpl[ORBType=" + ORBType + "]" ;
    
public voidwriteContents(org.omg.CORBA_2_3.portable.OutputStream os)

	os.write_ulong( ORBType ) ;