/** Deserialization. */ public void deserializeIt(DmcInputStreamIF dis) throws Exception { initialize(dis.readUTF()); }
/** * Read a String. * * @param dis the input stream. * @return A value read from the input stream. * @throws Exception */ public String deserializeValue(DmcInputStreamIF dis) throws Exception { return (new String(dis.readUTF())); }