source: trunk/src/test/java/omq/test/exception/ServerInterface.java @ 46

Last change on this file since 46 was 46, checked in by stoda, 11 years ago

Refactoring tests
TODO: every test should work with every serializer

File size: 277 bytes
Line 
1package omq.test.exception;
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.