Uses of Class
jut.ref.Counter

Packages that use Counter
jut.ref utilities related to call by reference issues, taken from the java utility classes collection "jut". 
 

Uses of Counter in jut.ref
 

Methods in jut.ref that return Counter
 Counter Counter.add(long val)
          add a value to the counter.
 Counter Counter.addDifListener(ParamCallable<Boolean,Long> listener)
          add a (non-null) change listener to this Counter. since Counter implements ParamCallable, one counter can be linked to another counter by adding it to the change listeners of the other counter. note that listeners can be added multiple times. in this case, they will also be notified multiple times.
 Counter Counter.addValListener(ParamCallable<Boolean,Long> listener)
          add a (non-null) value listener to this Counter. note that listeners can be added multiple times. in this case, they will also be notified multiple times.