KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > simple > Auto


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.simple;
10
11 import org.ozoneDB.OzoneRemote;
12
13
14 public interface Auto extends OzoneRemote {
15
16     public void print();
17
18     public void setName(String JavaDoc newName);
19
20     public String JavaDoc name();
21
22     public String JavaDoc nameName() throws Exception JavaDoc;
23
24     public void setAge(Integer JavaDoc newAge) throws Exception JavaDoc;
25
26     public int setAge(int newAge) throws Exception JavaDoc;
27
28     public Integer JavaDoc age() throws Exception JavaDoc;
29
30     public Auto doSomthing(Auto auto) throws Exception JavaDoc;
31
32     public Auto setLink(Auto auto) throws Exception JavaDoc;
33
34     public Auto link() throws Exception JavaDoc;
35
36     public String JavaDoc toString();
37 }
38
Popular Tags