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