Esempio n. 1
0
 /**
  * Decodes -- that is: deserializes -- a XDR char from a XDR stream in compliance to RFC 1832.
  *
  * @throws OncRpcException if an ONC/RPC error occurs.
  * @throws IOException if an I/O error occurs.
  */
 public void xdrDecode(XdrDecodingStream xdr) throws OncRpcException, IOException {
   value = (char) xdr.xdrDecodeByte();
 }