Class MAnnotationDetail


  • public class MAnnotationDetail
    extends MIdElement
    The annotation detail class for storing the key and value of an annotation detail.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String key
      The key.
      protected java.lang.String type
      The type.
      protected java.lang.String value
      The value.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getKey()
      Get the key.
      java.lang.String getType()
      Get the type.
      java.lang.String getValue()
      Get the value.
      void setKey​(java.lang.String key)
      Set the key.
      void setType​(java.lang.String type)
      Set the type.
      void setValue​(java.lang.String value)
      Set the value.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • type

        protected java.lang.String type
        The type.
      • key

        protected java.lang.String key
        The key.
      • value

        protected java.lang.String value
        The value.
    • Constructor Detail

      • MAnnotationDetail

        public MAnnotationDetail()
    • Method Detail

      • getType

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

        public void setType​(java.lang.String type)
        Set the type.
        Parameters:
        type - The type to set.
      • getKey

        public java.lang.String getKey()
        Get the key.
        Returns:
        The key.
      • setKey

        public void setKey​(java.lang.String key)
        Set the key.
        Parameters:
        key - The key to set.
      • getValue

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

        public void setValue​(java.lang.String value)
        Set the value.
        Parameters:
        value - The value to set.