Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IntChangeListener |
|
| 1.0;1 |
1 | package com.sun.javafx.runtime.location; | |
2 | ||
3 | /** | |
4 | * IntChangeListener | |
5 | * | |
6 | * @author Brian Goetz | |
7 | */ | |
8 | public interface IntChangeListener { | |
9 | /** Notifies the listener that the contents of the location may have changed. */ | |
10 | public void onChange(int oldValue, int newValue); | |
11 | } |