Interface ISpecificationComponent
- 
@OpenApiAll public interface ISpecificationComponentThe interface of specification component. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddispose()Method is called when the component is disposed.javax.swing.JComponentgetComponent()Returns the GUI component.voidpropertyChanged(Element element, java.beans.PropertyChangeEvent event)This method gets called when a property is of the element is changed.voidupdateComponent()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. 
 - 
 
 -