Package jadex.bridge.modelinfo
Interface IArgument
-
- All Known Implementing Classes:
Argument
public interface IArgument
Interface for start arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassInfo
getClazz()
Get the class info.UnparsedExpression
getDefaultValue()
Get the default value.java.lang.String
getDescription()
Get the description.java.lang.String
getName()
Get the name.boolean
validate(java.lang.String input)
Check the validity of an input.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Get the name.- Returns:
- The name.
-
getDescription
java.lang.String getDescription()
Get the description.- Returns:
- The description.
-
getClazz
ClassInfo getClazz()
Get the class info.- Returns:
- The class info.
-
getDefaultValue
UnparsedExpression getDefaultValue()
Get the default value.- Returns:
- The default value.
-
validate
boolean validate(java.lang.String input)
Check the validity of an input.- Parameters:
input
- The input.- Returns:
- True, if valid.
-
-