56575859606162636465666768
public static Counter createCount (long... seed){ Counter count; if (seed.length == 0){ count = new CounterImpl (); } else { count = new CounterImpl (); count.setCount(seed[0]); } count.setEnabled(true); return count; }