01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest;
05:
06: public class StupidSimpleDSOClientCounter {
07:
08: private int count;
09:
10: public int getCount() {
11: return this .count;
12: }
13:
14: public void incrementCount() {
15: this .count++;
16: }
17:
18: public String toString() {
19: return getClass().getName() + ".count= " + this.count;
20: }
21: }
|