/*
* Automatically generated by jrpcgen 1.0.5 on 10/23/08 8:11 PM
* jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
* See http://remotetea.sourceforge.net for details
*/
package ganglia.xdr.v31x;
import org.acplt.oncrpc.*;
import java.io.IOException;
public class Ganglia_gmetric_uint implements XdrAble {
public Ganglia_metric_id metric_id;
public String fmt;
public int ui;
public Ganglia_gmetric_uint() {
}
public Ganglia_gmetric_uint(XdrDecodingStream xdr)
throws OncRpcException, IOException {
xdrDecode(xdr);
}
public void xdrEncode(XdrEncodingStream xdr)
throws OncRpcException, IOException {
metric_id.xdrEncode(xdr);
xdr.xdrEncodeString(fmt);
xdr.xdrEncodeInt(ui);
}
public void xdrDecode(XdrDecodingStream xdr)
throws OncRpcException, IOException {
metric_id = new Ganglia_metric_id(xdr);
fmt = xdr.xdrDecodeString();
ui = xdr.xdrDecodeInt();
}
}
// End of Ganglia_gmetric_uint.java
|