Class PopupPanelManager.PopupInfo
- java.lang.Object
-
- org.pushingpixels.radiance.component.api.common.popup.PopupPanelManager.PopupInfo
-
- Enclosing class:
- PopupPanelManager
public static class PopupPanelManager.PopupInfo extends java.lang.Object
Information on a single showing popup.
-
-
Field Summary
Fields Modifier and Type Field Description private javax.swing.JComponent
popupOriginator
The originating component.private JPopupPanel
popupPanel
The popup panel.
-
Constructor Summary
Constructors Constructor Description PopupInfo(javax.swing.JComponent popupOriginator, JPopupPanel popupPanel)
Creates a new information object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.swing.JComponent
getPopupOriginator()
Returns the originating component.JPopupPanel
getPopupPanel()
Returns the popup panel.
-
-
-
Field Detail
-
popupPanel
private JPopupPanel popupPanel
The popup panel.
-
popupOriginator
private javax.swing.JComponent popupOriginator
The originating component.
-
-
Constructor Detail
-
PopupInfo
public PopupInfo(javax.swing.JComponent popupOriginator, JPopupPanel popupPanel)
Creates a new information object.- Parameters:
popupOriginator
- The originating component.popupPanel
- The popup panel.
-
-
Method Detail
-
getPopupPanel
public JPopupPanel getPopupPanel()
Returns the popup panel.- Returns:
- The popup panel.
-
getPopupOriginator
public javax.swing.JComponent getPopupOriginator()
Returns the originating component.- Returns:
- The originating component.
-
-