|
Last change
on this file since 79 was
38,
checked in by stoda, 13 years ago
|
|
Remote exception added
todo: change throws Exception to Throwable since it seems that NoSuchMethodException? does not inherit from Exception...
|
|
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.