C D E G I R S

C

Counter - class Counter.
A Counter is an object that counts integer values.
Counter() - Constructor for class Counter
Constructs a counter with default value (0) and step (1).
Counter(int) - Constructor for class Counter
Constructs a counter providing a start value and a default step (1).
Counter(int, int) - Constructor for class Counter
Constructs a counter providing a start value and a specific step.

D

dec() - Method in class Counter
Decrements the counter value.
dec(int) - Method in class Counter
Decrements the counter value

E

equals(Counter) - Method in class Counter
Tests if two counters are equal.

G

getStep() - Method in class Counter
Gets the counter step value.
getValue() - Method in class Counter
Gets the counter value.

I

inc() - Method in class Counter
Increments the counter value.
inc(int) - Method in class Counter
Increments the counter value

R

reset() - Method in class Counter
Resets the counter value.

S

setLimits(int, int) - Method in class Counter
Set the limits of the caunter, min e max.
setStep(int) - Method in class Counter
Set the counter step value.

C D E G I R S