source:
branches/objectmq_old/test/exceptionTest/ServerInterface.java
Last change on this file was 38, checked in by stoda, 11 years ago | |
---|---|
File size: 272 bytes |
Line | |
---|---|
1 | package exceptionTest; |
2 | |
3 | import omq.Remote; |
4 | |
5 | public interface ServerInterface extends Remote { |
6 | public void addWheels(int numWheels); |
7 | |
8 | public void addHp(int hp); |
9 | |
10 | public int getHp(); |
11 | |
12 | public int getWheels(); |
13 | |
14 | public void setPrice(int price); |
15 | |
16 | public int getPrice(); |
17 | } |
Note: See TracBrowser
for help on using the repository browser.