Package org.graffiti.editor.dialog
Interface ParameterDialog
- All Known Implementing Classes:
AbstractParameterDialog
,DefaultParameterDialog
public interface ParameterDialog
ParameterDialog
provides an interface for dialogs displaying
name-value pairs where the value can be edited.- See Also:
ValueEditComponent
-
Method Summary
Modifier and Type Method Description Parameter[]
getEditedParameters()
Returns the array of edited parameters.Collection<Session>
getTargetSessions()
boolean
isOkSelected()
Returnstrue
, if the user selected the ok button.void
setValueEditContainer(ValueEditContainer vec)
Sets theValueEditContainer
of thisParameterDialog
to the specified value.List<?>
validateComponents()
Checks if all the edit components have a syntactically correct input.
-
Method Details
-
getEditedParameters
Parameter[] getEditedParameters()Returns the array of edited parameters.- Returns:
- the array of edited parameters.
-
isOkSelected
boolean isOkSelected()Returnstrue
, if the user selected the ok button.- Returns:
- DOCUMENT ME!
-
setValueEditContainer
Sets theValueEditContainer
of thisParameterDialog
to the specified value.- Parameters:
vec
- theValueEditContainer
to be set.
-
validateComponents
List<?> validateComponents()Checks if all the edit components have a syntactically correct input.- Returns:
- a
java.util.List
ofEditComponent
s which have a syntactically incorrect input.
-
getTargetSessions
Collection<Session> getTargetSessions()
-