01: /*
02: * test.Counter
03: */
04: package de.schlund.pfixcore.example.webservices;
05:
06: /**
07: * Counter.java
08: *
09: * Created: 28.06.2004
10: *
11: * @author mleidig
12: */
13: public interface Counter {
14:
15: public int getValue() throws Exception;
16:
17: public boolean setValue(int value) throws Exception;
18:
19: public int addValue(int value) throws Exception;
20:
21: public int subtractValue(int value) throws Exception;
22:
23: public boolean reset() throws Exception;
24:
25: }
|