~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to libdb/rpc_server/java/gen/__dbc_dup_msg.java

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.10.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 128.
  • Revision ID: james.westby@ubuntu.com-20100517170206-xu1wmjuy40nt2sk0
Tags: upstream-2.30.1
ImportĀ upstreamĀ versionĀ 2.30.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM
3
 
 * jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
4
 
 * See http://acplt.org/ks/remotetea.html for details
5
 
 */
6
 
package com.sleepycat.db.rpcserver;
7
 
import org.acplt.oncrpc.*;
8
 
import java.io.IOException;
9
 
 
10
 
public class __dbc_dup_msg implements XdrAble {
11
 
    public int dbccl_id;
12
 
    public int flags;
13
 
 
14
 
    public __dbc_dup_msg() {
15
 
    }
16
 
 
17
 
    public __dbc_dup_msg(XdrDecodingStream xdr)
18
 
           throws OncRpcException, IOException {
19
 
        xdrDecode(xdr);
20
 
    }
21
 
 
22
 
    public void xdrEncode(XdrEncodingStream xdr)
23
 
           throws OncRpcException, IOException {
24
 
        xdr.xdrEncodeInt(dbccl_id);
25
 
        xdr.xdrEncodeInt(flags);
26
 
    }
27
 
 
28
 
    public void xdrDecode(XdrDecodingStream xdr)
29
 
           throws OncRpcException, IOException {
30
 
        dbccl_id = xdr.xdrDecodeInt();
31
 
        flags = xdr.xdrDecodeInt();
32
 
    }
33
 
 
34
 
}
35
 
// End of __dbc_dup_msg.java