Interface ISpecificationComponent


@OpenApiAll public interface ISpecificationComponent
The interface of specification component.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Method is called when the component is disposed.
    Returns the GUI component.
    void
    This method gets called when a property is of the element is changed.
    void
    Method is called when component should be updated.
  • Method Details

    • getComponent

      JComponent getComponent()
      Returns the GUI component.
      Returns:
      component.
    • propertyChanged

      void propertyChanged(Element element, 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.