Methods Summary |
---|
public void | _read(org.omg.CORBA.portable.InputStream is)Read the data into a (presumably) empty ObjectReferenceFactoryImpl.
This sets the orb to the ORB of the InputStream.
org.omg.CORBA_2_3.portable.InputStream istr =
(org.omg.CORBA_2_3.portable.InputStream)is ;
iorTemplates = IORFactories.makeIORTemplateList( istr ) ;
|
public java.lang.String[] | _truncatable_ids()
return new String[] { repositoryId } ;
|
public org.omg.CORBA.TypeCode | _type()
return ObjectReferenceFactoryHelper.type() ;
|
public void | _write(org.omg.CORBA.portable.OutputStream os)Write the state to the OutputStream.
org.omg.CORBA_2_3.portable.OutputStream ostr =
(org.omg.CORBA_2_3.portable.OutputStream)os ;
iorTemplates.write( ostr ) ;
|
public boolean | equals(java.lang.Object obj)
if (!(obj instanceof ObjectReferenceFactoryImpl))
return false ;
ObjectReferenceFactoryImpl other = (ObjectReferenceFactoryImpl)obj ;
return (iorTemplates != null) &&
iorTemplates.equals( other.iorTemplates ) ;
|
public com.sun.corba.se.spi.ior.IORFactory | getIORFactory()
return iorTemplates ;
|
public com.sun.corba.se.spi.ior.IORTemplateList | getIORTemplateList()
return iorTemplates ;
|
public int | hashCode()
return iorTemplates.hashCode() ;
|