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 ValueEditComponent
s. 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 anotherValueEditComponent
to the dialog.List<?>
getEditComponents()
Returns ajava.util.List
containing all the edit components of thisValueEditContainer
.
-
Method Details
-
getEditComponents
List<?> getEditComponents()Returns ajava.util.List
containing all the edit components of thisValueEditContainer
.- Returns:
- a
java.util.List
containing all the edit components of thisValueEditContainer
.
-
addValueEditComponent
Adds anotherValueEditComponent
to the dialog.- Parameters:
vec
- theValueEditComponent
to be added to the dialog.
-