Interface ValueEditContainer

All Known Implementing Classes:
AbstractGraffitiValueEditContainer, AbstractValueEditContainer

public interface ValueEditContainer
ValueEditContainer is an interface for an arbitrary component containing a set of ValueEditComponents. A class implementing this interface can be used either within a dialog or within a separate frame etc.
See Also:
ValueEditComponent
  • Method Summary

    Modifier and Type Method Description
    void addValueEditComponent​(ValueEditComponent vec)
    Adds another ValueEditComponent to the dialog.
    List<?> getEditComponents()
    Returns a java.util.List containing all the edit components of this ValueEditContainer.
  • Method Details

    • getEditComponents

      List<?> getEditComponents()
      Returns a java.util.List containing all the edit components of this ValueEditContainer.
      Returns:
      a java.util.List containing all the edit components of this ValueEditContainer.
    • addValueEditComponent

      void addValueEditComponent​(ValueEditComponent vec)
      Adds another ValueEditComponent to the dialog.
      Parameters:
      vec - the ValueEditComponent to be added to the dialog.