5859606162636465666768
Class clas; try { clas = Class.forName( "bsh.reflect.ReflectManagerImpl" ); rfm = (ReflectManager)clas.newInstance(); } catch ( Exception e ) { throw new Unavailable("Reflect Manager unavailable: "+e); } } return rfm; }
1415161718192021222324
{ try { Class clas = Class.forName( "bsh.ClassGeneratorImpl" ); cg = (ClassGenerator)clas.newInstance(); } catch ( Exception e ) { throw new Unavailable("ClassGenerator unavailable: "+e); } } return cg; }
325326327328329330331332333
throw new org.omg.CORBA.NO_IMPLEMENT(); } public Terminator get_terminator() throws Unavailable{ if (status == Status._StatusNoTransaction){ throw new Unavailable(); } return term_ref; }
332333334335336337338339340
return term_ref; } public Coordinator get_coordinator() throws Unavailable{ if (status == Status._StatusNoTransaction){ throw new Unavailable(); } return coord_ref; }
206207208209210211212213214215216
data = packPropagationContext(ctx); theCoordinator = null; } else throw new Unavailable(); } catch (Unavailable ex) { /* * We may have to make calls during
225226227228229230231232233234235
203204205206207208209210211212213
214215216217218219220221222223224