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-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: Garage.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.test.simple;
10:
11: import java.io.*;
12: import org.ozoneDB.*;
13: import org.ozoneDB.DxLib.*;
14:
15: public interface Garage extends OzoneRemote {
16:
17: public void print();
18:
19: public void printAll() throws Exception;
20:
21: public Auto[] getAll() throws Exception;
22:
23: public int[] _setAll(Auto a0, int[] a1, Integer[] a2)
24: throws Exception;
25:
26: public void _addAuto(Auto auto) throws Exception;
27:
28: public void _newAuto(String name) throws Exception;
29:
30: public void _populate(Integer num) throws Exception;
31:
32: public Auto autoForName(String search);
33:
34: public void setAlter(DxInteger alter) throws Exception;
35:
36: public void crunch(DxInteger num) throws Exception;
37:
38: public void _lockThis() throws Exception;
39:
40: public void _langeTA(Garage garage) throws Exception;
41: // public void done() throws Exception;
42: }
|