Home
last modified time | relevance | path

Searched refs:transMax (Results 1 – 1 of 1) sorted by relevance

/titanic_44/usr/src/cmd/krb5/kadmin/gui/dchanger/
H A DDCCircularTextField.java93 int transMax = maximum - minimum; in increment() local
99 transValue %= (transMax + 1); // modulo max+1 since max is permissible in increment()
100 transValue = (transValue < 0)? (transValue + (transMax+1)) : transValue; in increment()