KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > pooka > RowCounter


1 package net.suberic.pooka;
2
3 public class RowCounter {
4     static RowCounter instance = new RowCounter();
5
6     private RowCounter() {
7     }
8
9     public static RowCounter getInstance() {
10     return instance;
11     }
12
13 }
14
Popular Tags