Package org.esa.snap.core.param
Interface ParamExceptionHandler
-
- All Known Implementing Classes:
AbstractParamEditor
,AbstractParamXEditor
,BooleanEditor
,ColorEditor
,ComboBoxEditor
,FileEditor
,LabelEditor
,ListEditor
,RadioButtonEditor
,TextFieldEditor
,TextFieldXEditor
public interface ParamExceptionHandler
TheParamExceptionHandler
are an alternative way to handle parameter exceptions. Multiple methods in theParameter
class accept aParamExceptionHandler
argument for this purpose.- Version:
- $Revision$ $Date$
- See Also:
Parameter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
handleParamException(ParamException e)
Notifies a client if an exeption occurred on aParameter
.
-
-
-
Method Detail
-
handleParamException
boolean handleParamException(ParamException e)
Notifies a client if an exeption occurred on aParameter
.- Parameters:
e
- the exception- Returns:
true
if the exception was handled successfully,false
otherwise
-
-