Interface IArgument

All Known Implementing Classes:
Argument

public interface IArgument
Interface for start arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    jadex.common.ClassInfo
    Get the class info.
    jadex.common.UnparsedExpression
    Get the default value.
    Get the description.
    Get the name.
    boolean
    Check the validity of an input.
  • Method Details

    • getName

      String getName()
      Get the name.
      Returns:
      The name.
    • getDescription

      String getDescription()
      Get the description.
      Returns:
      The description.
    • getClazz

      jadex.common.ClassInfo getClazz()
      Get the class info.
      Returns:
      The class info.
    • getDefaultValue

      jadex.common.UnparsedExpression getDefaultValue()
      Get the default value.
      Returns:
      The default value.
    • validate

      boolean validate(String input)
      Check the validity of an input.
      Parameters:
      input - The input.
      Returns:
      True, if valid.