41424344454647
public Object lookupFc(String id) throws NoSuchInterfaceException { if (id.equals("s")) return this.service; throw new NoSuchInterfaceException((("Client interface \'" + id) + "\' is undefined.")); }
49505152535455
public void bindFc(String id, Object ref) throws NoSuchInterfaceException { if (id.equals("s")) { this.service = ((Service)(ref)); return ; } throw new NoSuchInterfaceException((("Client interface \'" + id) + "\' is undefined.")); }
57585960616263
public void unbindFc(String id) throws NoSuchInterfaceException { if (id.equals("s")) { this.service = null; return ; } throw new NoSuchInterfaceException((("Client interface \'" + id) + "\' is undefined.")); }
74757677787980
@Override public void bindFc(String itfName, Object itf) throws NoSuchInterfaceException { if(itfName.compareTo("sc") == 0) sc = (SkandiumComponent) itf; else throw new NoSuchInterfaceException(itfName); }
86878889909192
@Override public Object lookupFc(String itfName) throws NoSuchInterfaceException { if(itfName.compareTo("sc") == 0) return sc; else throw new NoSuchInterfaceException(itfName); }
93949596979899
@Override public void unbindFc(String itfName) throws NoSuchInterfaceException { if(itfName.compareTo("sc") == 0) sc = null; else throw new NoSuchInterfaceException(itfName); }
172173174175176177178
sct = (SCTransmitter) itf; else if(name.compareTo("scr") == 0) scr = (SCReceiver) itf; else if(name.compareTo("scrr") == 0) scrr = (SCResultReceiver) itf; else throw new NoSuchInterfaceException(name); }
189190191192193194195
return sct; else if(name.compareTo("scr") == 0) return scr; else if(name.compareTo("scrr") == 0) return scrr; else throw new NoSuchInterfaceException(name); }
201202203204205206207
sct = null; else if(name.compareTo("scr") == 0) scr = null; else if(name.compareTo("scrr") == 0) scrr = null; else throw new NoSuchInterfaceException(name); }
71727374757677