source: branches/objectmq_old/test/exceptionTest/ServerInterface.java @ 50

Last change on this file since 50 was 38, checked in by stoda, 11 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 
1package exceptionTest;
2
3import omq.Remote;
4
5public 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.