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: Auto.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.test.simple;
10:
11: import org.ozoneDB.*;
12:
13: public interface Auto extends OzoneRemote {
14:
15: public void print();
16:
17: public void setName(String newName);
18:
19: public String name();
20:
21: public String nameName() throws Exception;
22:
23: public void setAge(Integer newAge) throws Exception;
24:
25: public int setAge(int newAge) throws Exception;
26:
27: public Integer age() throws Exception;
28:
29: public Auto doSomthing(Auto auto) throws Exception;
30:
31: public Auto setLink(Auto auto) throws Exception;
32:
33: public Auto link() throws Exception;
34:
35: public String toString();
36: }
|