public interface DesktopPanel extends PropertyChangeNotifier
Behaviour for a SoapUI desktop panel
Type Params | Return Type | Name and description |
---|---|---|
|
public boolean |
dependsOn(ModelItem modelItem) Checks if this desktop panel depends on the existence of the specified model item, used for closing relevant panels. |
|
public ModelItem |
getCacheId() Returns panel's id in desktop's cache |
|
public javax.swing.JComponent |
getComponent() Gets the component used to display this desktop panel |
|
public java.lang.String |
getDescription() Gets the description for this desktop panel.. may be used as tooltip, etc.. |
|
public javax.swing.Icon |
getIcon() Returns the icon for this panel |
|
public ModelItem |
getModelItem() Gets the model item associated with this desktop panel |
|
public ModelItem |
getNavigatorModelItem() Gets the Navigator model item associated with this desktop panel |
|
public java.lang.String |
getTitle() Gets the title for this desktop panel |
|
public boolean |
onClose(boolean canCancel) Called when a desktop panel is about to be closed, may be overridden (depending on situation) by returning false if canCancel is set to true. |
|
public void |
updatePanelUI() |
Methods inherited from class | Name |
---|---|
interface PropertyChangeNotifier |
addPropertyChangeListener, addPropertyChangeListener, removePropertyChangeListener, removePropertyChangeListener |
Checks if this desktop panel depends on the existence of the specified model item, used for closing relevant panels.
modelItem
- tested model itemReturns panel's id in desktop's cache
Gets the component used to display this desktop panel
Gets the description for this desktop panel.. may be used as tooltip, etc..
Returns the icon for this panel
Gets the model item associated with this desktop panel
Gets the Navigator model item associated with this desktop panel
Gets the title for this desktop panel
Called when a desktop panel is about to be closed, may be overridden (depending on situation) by returning false if canCancel is set to true.