Package jadex.bridge.modelinfo
Interface IArgument
- 
- All Known Implementing Classes:
- Argument
 
 public interface IArgumentInterface for start arguments.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassInfogetClazz()Get the class info.UnparsedExpressiongetDefaultValue()Get the default value.java.lang.StringgetDescription()Get the description.java.lang.StringgetName()Get the name.booleanvalidate(java.lang.String input)Check the validity of an input.
 
- 
- 
- 
Method Detail- 
getNamejava.lang.String getName() Get the name.- Returns:
- The name.
 
 - 
getDescriptionjava.lang.String getDescription() Get the description.- Returns:
- The description.
 
 - 
getClazzClassInfo getClazz() Get the class info.- Returns:
- The class info.
 
 - 
getDefaultValueUnparsedExpression getDefaultValue() Get the default value.- Returns:
- The default value.
 
 - 
validateboolean validate(java.lang.String input) Check the validity of an input.- Parameters:
- input- The input.
- Returns:
- True, if valid.
 
 
- 
 
-