Package com.gargoylesoftware.base.gui
Class DelayedComponentLoaderEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.gargoylesoftware.base.gui.DelayedComponentLoaderEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class DelayedComponentLoaderEvent extends java.util.EventObject
An event that describes changes to a DelayedComponentLoader.- Version:
- $Revision: 1.4 $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.awt.Component
loadedComponent_
private ComponentLoader
loader_
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DelayedComponentLoaderEvent(java.lang.Object source, ComponentLoader loader, java.awt.Component loadedComponent)
Create a new event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ComponentLoader
getComponentLoader()
Return the component loader or null if there isn't one.java.awt.Component
getLoadedComponent()
Return the component that was loaded or null if the loading has not completed.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
loader_
private final ComponentLoader loader_
-
loadedComponent_
private final java.awt.Component loadedComponent_
-
-
Constructor Detail
-
DelayedComponentLoaderEvent
public DelayedComponentLoaderEvent(java.lang.Object source, ComponentLoader loader, java.awt.Component loadedComponent)
Create a new event.- Parameters:
source
- The source component.loader
- The component loaderloadedComponent
- The component that was loaded.
-
-
Method Detail
-
getComponentLoader
public ComponentLoader getComponentLoader()
Return the component loader or null if there isn't one.- Returns:
- The component loader or null if there isn't one.
-
getLoadedComponent
public java.awt.Component 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.
-
-