Package de.xima.fc.plugin.config
Interface IExtendedParameterModel
-
- All Superinterfaces:
IParameterModel
,Serializable
- All Known Implementing Classes:
DefaultParametersModel
,ParameterModel
public interface IExtendedParameterModel extends IParameterModel
A parameter model with additional settings such as group items.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getDependentMandatoryParamNames()
String
getValidationErrorMsg()
boolean
isDependentMandatory()
boolean
isGroupItem()
boolean
isParamNameEditable()
boolean
isParamValueCryptic()
boolean
isValidationError()
void
setDeletable(boolean isDeletable)
void
setDependentMandatoryParamNames(Set<String> paramNames)
void
setGroupItem(boolean groupItem)
void
setParamBehavior(String paramBehavior)
void
setParamDescription(String paramDesc)
void
setParamNameEditable(boolean nameEditable)
void
setParamValueCryptic(boolean crypticValue)
void
setValidationError(boolean error)
void
setValidationErrorMsg(String validationErrorMsg)
-
Methods inherited from interface de.xima.fc.plugin.config.IParameterModel
getParamBehavior, getParamDescription, getParamDisplayName, getParamName, getParamValue, isDeletable, isParamMandatory, setParamDisplayName, setParamMandatory, setParamName, setParamValue
-
-
-
-
Method Detail
-
getValidationErrorMsg
String getValidationErrorMsg()
-
isDependentMandatory
boolean isDependentMandatory()
-
isGroupItem
boolean isGroupItem()
-
isParamNameEditable
boolean isParamNameEditable()
-
isParamValueCryptic
boolean isParamValueCryptic()
-
isValidationError
boolean isValidationError()
-
setDeletable
void setDeletable(boolean isDeletable)
-
setGroupItem
void setGroupItem(boolean groupItem)
-
setParamBehavior
void setParamBehavior(String paramBehavior)
-
setParamDescription
void setParamDescription(String paramDesc)
-
setParamNameEditable
void setParamNameEditable(boolean nameEditable)
-
setParamValueCryptic
void setParamValueCryptic(boolean crypticValue)
-
setValidationError
void setValidationError(boolean error)
-
setValidationErrorMsg
void setValidationErrorMsg(String validationErrorMsg)
-
-