Package jadex.commons

Interface IPropertyObject

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object getProperty​(java.lang.String name)
      Returns a property.
      java.util.Set getPropertyNames()
      Returns all of the properties.
      boolean hasProperty​(java.lang.String name)
      Tests if the given property name exists If an property is null it exists
      void setProperty​(java.lang.String name, java.lang.Object value)
      Sets a property
    • Method Detail

      • getProperty

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

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

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

        boolean hasProperty​(java.lang.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