Class PropertyAnnotation


  • public class PropertyAnnotation
    extends java.lang.Object
    Property annotation.
    Author:
    Daniel Sagenschneider
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Obtains the name of the property.
      java.lang.String getValue()
      Obtains the value of the property.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • PropertyAnnotation

        public PropertyAnnotation​(java.lang.String name,
                                  java.lang.String value)
        Instantiate.
        Parameters:
        name - Name of the property.
        value - Value of the property.
      • PropertyAnnotation

        public PropertyAnnotation​(Property property)
        Instantiate.
        Parameters:
        property - Property.
    • Method Detail

      • getName

        public java.lang.String getName()
        Obtains the name of the property.
        Returns:
        Name of the property.
      • getValue

        public java.lang.String getValue()
        Obtains the value of the property.
        Returns:
        Value of the property.