Package jadex.common

Class Property

java.lang.Object
jadex.common.Property

public class Property extends Object
A configuration property.
  • Field Details

    • name

      protected String name
      The name.
    • type

      protected String type
      The property type (defines the kind of property).
    • value

      protected String value
      The value.
  • Constructor Details

    • Property

      public Property()
      Create a new property.
    • Property

      public Property(String type, String value)
      Create a new property.
    • Property

      public Property(String name, String type, String value)
      Create a new property.
  • Method Details

    • getName

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

      public void setName(String name)
      Set the name.
      Parameters:
      name - The name to set.
    • getType

      public String getType()
      Get the type.
      Returns:
      The type.
    • setType

      public void setType(String type)
      Set the type.
      Parameters:
      type - The type to set.
    • getValue

      public String getValue()
      Get the value.
      Returns:
      The value.
    • setValue

      public void setValue(String value)
      Set the value.
    • toString

      public String toString()
      Get the string representation.
      Overrides:
      toString in class Object
      Returns:
      The string representation.