KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > simple > Garage


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-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id$
8

9 package test.simple;
10
11 import org.ozoneDB.DxLib.DxInteger;
12 import org.ozoneDB.OzoneRemote;
13
14
15 public interface Garage extends OzoneRemote {
16
17
18     public void print();
19
20
21     public void printAll() throws Exception JavaDoc;
22
23
24     public Auto[] getAll() throws Exception JavaDoc;
25
26
27     public int[] _setAll(Auto a0, int[] a1, Integer JavaDoc[] a2) throws Exception JavaDoc;
28
29
30     public void _addAuto(Auto auto) throws Exception JavaDoc;
31
32
33     public void _newAuto(String JavaDoc name) throws Exception JavaDoc;
34
35
36     public void _populate(Integer JavaDoc num) throws Exception JavaDoc;
37
38
39     public Auto autoForName(String JavaDoc search);
40
41
42     public void setAlter(DxInteger alter) throws Exception JavaDoc;
43
44
45     public void crunch(DxInteger num) throws Exception JavaDoc;
46
47
48     public void _lockThis() throws Exception JavaDoc;
49
50
51     public void _langeTA(Garage garage) throws Exception JavaDoc;
52     // public void done() throws Exception;
53
}
54
Popular Tags