Package com.gargoylesoftware.base.gui
Class DelayedComponentLoaderEvent
java.lang.Object
java.util.EventObject
com.gargoylesoftware.base.gui.DelayedComponentLoaderEvent
- All Implemented Interfaces:
Serializable
An event that describes changes to a DelayedComponentLoader.
- Version:
- $Revision: 1.4 $
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Component
private final ComponentLoader
private static final long
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionDelayedComponentLoaderEvent
(Object source, ComponentLoader loader, Component loadedComponent) Create a new event. -
Method Summary
Modifier and TypeMethodDescriptionReturn the component loader or null if there isn't one.Return the component that was loaded or null if the loading has not completed.Methods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
loader_
-
loadedComponent_
-
-
Constructor Details
-
DelayedComponentLoaderEvent
public DelayedComponentLoaderEvent(Object source, ComponentLoader loader, Component loadedComponent) Create a new event.- Parameters:
source
- The source component.loader
- The component loaderloadedComponent
- The component that was loaded.
-
-
Method Details
-
getComponentLoader
Return the component loader or null if there isn't one.- Returns:
- The component loader or null if there isn't one.
-
getLoadedComponent
Return the component that was loaded or null if the loading has not completed.- Returns:
- The component that was loaded or null if the loading has not completed.
-