Package com.luciad.utils
Interface IInvalidationCallback
public interface IInvalidationCallback
This is a callback class that is called when something is invalidated.
For example, this class is implemented (and set on the Map) when integrating a Map component with a UI framework. In that case, implementations of this class need to make sure that the UI framework will eventually call Map.Renderer#paint .
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by the object on which this callback was set when the object is invalidated.
-
Method Details
-
onInvalidate
void onInvalidate()Called by the object on which this callback was set when the object is invalidated.
-