1 | public int increment() { // implement operation... return 0; } |
2 | public void sum(int sum) { // implement attribute writer... } |
3 | public int sum() { // implement attribute reader... return 0; } } // End _example_Count |
4 | Implementer must complete these methods as CountImpl.java |