197198199200201202203204205
// LocalIRObject implementation ---------------------------------- public IRObject getReference() { if (ref == null) { ref = org.omg.CORBA.ExceptionDefHelper.narrow( servantToReference(new ExceptionDefPOATie(this))); } return ref; }
193194195196197198199200201202203
this.poa, this.logger); org.omg.CORBA.ExceptionDef exRef = org.omg.CORBA.ExceptionDefHelper.narrow( this.poa.servant_to_reference( new ExceptionDefPOATie ( ex ) ) ); v.addElement( exRef ); ex.setReference( exRef );
220221222223224225226227228
public IRObject getReference() { if (ref == null) { ref = org.omg.CORBA.ExceptionDefHelper.narrow( servantToReference(new ExceptionDefPOATie(this)) ); } return ref; }
145146147148149150151152153154
/* */ } /* */ /* */ public IRObject getReference() /* */ { /* 223 */ if (this.ref == null) { /* 224 */ this.ref = ExceptionDefHelper.narrow(servantToReference(new ExceptionDefPOATie(this))); /* */ } /* */ /* 227 */ return this.ref; /* */ }
198199200201202203204205206