Interface ISpecificationComponent
-
@OpenApiAll public interface ISpecificationComponent
The interface of specification component.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dispose()
Method is called when the component is disposed.javax.swing.JComponent
getComponent()
Returns the GUI component.void
propertyChanged​(Element element, java.beans.PropertyChangeEvent event)
This method gets called when a property is of the element is changed.void
updateComponent()
Method is called when component should be updated.
-
-
-
Method Detail
-
getComponent
javax.swing.JComponent getComponent()
Returns the GUI component.- Returns:
- component.
-
propertyChanged
void propertyChanged​(Element element, java.beans.PropertyChangeEvent event)
This method gets called when a property is of the element is changed.- Parameters:
element
- element which is represented by component.event
- a PropertyChangeEvent object describing the event source and the property that has changed.
-
updateComponent
void updateComponent()
Method is called when component should be updated. Implementation must check if component really needs to be updated.
-
dispose
void dispose()
Method is called when the component is disposed.
-
-