Package jadex.common

Interface IPropertyObject


public interface IPropertyObject
Interface for property-holding objects.
  • Method Details

    • getProperty

      Object getProperty(String name)
      Returns a property.
      Parameters:
      name - name of the property
      Returns:
      the property
    • getPropertyNames

      Set getPropertyNames()
      Returns all of the properties.
      Returns:
      the properties
    • setProperty

      void setProperty(String name, Object value)
      Sets a property
      Parameters:
      name - name of the property
      value - value of the property
    • hasProperty

      boolean hasProperty(String name)
      Tests if the given property name exists If an property is null it exists
      Parameters:
      name - the name of the property to test
      Returns:
      true if and only if the property exists