Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/krb5/kadmin/gui/dchanger/
H A DDCCircularTextField.java94 int transValue = next - 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()
105 next = transValue + minimum; in increment()