01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-2000 by SMB GmbH. All rights reserved.
06: //
07: // $Id: Args.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.test.args;
10:
11: import org.ozoneDB.*;
12: import org.ozoneDB.DxLib.*;
13:
14: /** */
15: public interface Args extends OzoneRemote {
16:
17: public void setup() throws Exception;
18:
19: public Args getProxy();
20:
21: public DxBag getComplexProxy();
22:
23: public String setSimpleObject(String arg);
24:
25: public DxBag setComplexObject(DxBag arg);
26:
27: public int setInt(int arg);
28:
29: public short setShort(short arg);
30:
31: public int[] setIntArray(int[] arg);
32:
33: public String[][] setStringArray(String[][] arg);
34: }
|