Main Page | Class Hierarchy | Data Structures | Directories | File List | Data Fields | Related Pages

__db_set_h_ffactor_msg.java

00001 /*
00002  * Automatically generated by jrpcgen 0.95.1 on 8/2/05 1:49 PM
00003  * jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
00004  * See http://acplt.org/ks/remotetea.html for details
00005  */
00006 package com.sleepycat.db.rpcserver;
00007 import org.acplt.oncrpc.*;
00008 import java.io.IOException;
00009 
00010 public class __db_set_h_ffactor_msg implements XdrAble {
00011     public int dbpcl_id;
00012     public int ffactor;
00013 
00014     public __db_set_h_ffactor_msg() {
00015     }
00016 
00017     public __db_set_h_ffactor_msg(XdrDecodingStream xdr)
00018            throws OncRpcException, IOException {
00019         xdrDecode(xdr);
00020     }
00021 
00022     public void xdrEncode(XdrEncodingStream xdr)
00023            throws OncRpcException, IOException {
00024         xdr.xdrEncodeInt(dbpcl_id);
00025         xdr.xdrEncodeInt(ffactor);
00026     }
00027 
00028     public void xdrDecode(XdrDecodingStream xdr)
00029            throws OncRpcException, IOException {
00030         dbpcl_id = xdr.xdrDecodeInt();
00031         ffactor = xdr.xdrDecodeInt();
00032     }
00033 
00034 }
00035 // End of __db_set_h_ffactor_msg.java

Generated on Sun Dec 25 12:14:48 2005 for Berkeley DB 4.4.16 by  doxygen 1.4.2