Package org.graffiti.editor.dialog
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 voidaddValueEditComponent(ValueEditComponent vec)Adds anotherValueEditComponentto the dialog.List<?>getEditComponents()Returns ajava.util.Listcontaining all the edit components of thisValueEditContainer.
-
Method Details
-
getEditComponents
List<?> getEditComponents()Returns ajava.util.Listcontaining all the edit components of thisValueEditContainer.- Returns:
- a
java.util.Listcontaining all the edit components of thisValueEditContainer.
-
addValueEditComponent
Adds anotherValueEditComponentto the dialog.- Parameters:
vec- theValueEditComponentto be added to the dialog.
-