KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > args > Args


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-2000 by SMB GmbH. All rights reserved.
6
//
7
// $Id$
8

9 package test.args;
10
11 import org.ozoneDB.DxLib.DxBag;
12 import org.ozoneDB.OzoneRemote;
13
14
15 /** */
16 public interface Args extends OzoneRemote {
17
18
19     public void setup() throws Exception JavaDoc;
20
21
22     public Args getProxy();
23
24
25     public DxBag getComplexProxy();
26
27
28     public String JavaDoc setSimpleObject(String JavaDoc arg);
29
30
31     public DxBag setComplexObject(DxBag arg);
32
33
34     public int setInt(int arg);
35
36
37     public short setShort(short arg);
38
39
40     public int[] setIntArray(int[] arg);
41
42
43     public String JavaDoc[][] setStringArray(String JavaDoc[][] arg);
44 }
45
Popular Tags