Interface AsynchronousLoadListener
-
- All Superinterfaces:
java.util.EventListener
public interface AsynchronousLoadListener extends java.util.EventListenerThis interface is used for asynchronously-loaded contents. For example, the SVG-based implementation ofRadianceIconin SVG Transcoder uses theExecutorServiceto load the SVG image in the background. When the image is loaded, the component that contains this image (command button from Component, for example) is notified so that it can repaint itself.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcompleted(boolean success)Indicates that the asynchronous load has been completed.
-