8485868788899091929394
if (present(protocol)) throw new ProtocolAlreadyRegisteredException(); else { ProtocolEntry e = new ProtocolEntry(protocol, className); Vector impls = (Vector) _protocols.get(e.protocolType()); if (impls == null) { impls = new Vector();
90919293949596979899100
if (impls == null) { impls = new Vector(); _protocols.put(e.protocolType(), impls); } impls.add(e); } }
9596979899100101102103104105
101102103104105106107108109110111