Package com.e1c.g5.v8.dt.check.settings
Interface ICheckParameterSettings
- 
 public interface ICheckParameterSettingsSeparate check parameter settings for each parameter that are being supplied with theICheckSettingsduring theICheck.check(Object, com.e1c.g5.v8.dt.check.ICheckResultAcceptor, com.e1c.g5.v8.dt.check.ICheckParameters, org.eclipse.core.runtime.IProgressMonitor)phase, as well as during the parameter value changes during the check settings editing via check preferences UI. Please note that changes of the parameter values during the check state are discarded after the check is finished and cannot be used to change check settings permanently
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Gets the name of the parameterStringgetTitle()Gets the title of the parameterClass<?>getType()Gets the type of the parameterStringgetValue()Gets the current raw value of the parameter.booleanisDefault()Returns whether property value matches the default one (so it wasn't changed by the user)voidsetValue(String value)Sets the property value
 
- 
- 
- 
Method Detail- 
setValuevoid setValue(String value) Sets the property value- Parameters:
- value- the value to set
 
 - 
getNameString getName() Gets the name of the parameter- Returns:
- The name of the parameter. May not be null
 
 - 
getTitleString getTitle() Gets the title of the parameter- Returns:
- The title of the paramter. May not be null
 
 - 
getTypeClass<?> getType() Gets the type of the parameter- Returns:
- The type of the parameter. May not be null
 
 - 
getValueString getValue() Gets the current raw value of the parameter. May not benull- Returns:
- The value of the parameter. May not be null. May be empty string
 
 - 
isDefaultboolean isDefault() Returns whether property value matches the default one (so it wasn't changed by the user)- Returns:
- True if the parameter value wasn't changed by the user
 
 
- 
 
-