Class BlockPropertyAnnotation


  • public class BlockPropertyAnnotation
    extends java.lang.Object
    This class represents a single annotation on a single property. An annotation is simply a name/value pair that is used by downstream tools (typically, renderers). The assignment of values does not affect the value stored in a property. The syntax for a single annotation is a simple name followed by an optional equal sign ('=') and a simple value (no spaces allowed).
    Since:
    MicroStrategy Web 9.0.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the name of the annotation.
      java.lang.String getValue()
      Returns the value of the annotation.
      void setValue​(java.lang.String value)
      Sets the value of the annotation.
      • Methods inherited from class java.lang.Object

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

      • getName

        public java.lang.String getName()
        Returns the name of the annotation.
        Returns:
        The name of the annotation.
      • getValue

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

        public void setValue​(java.lang.String value)
        Sets the value of the annotation.
        Parameters:
        value - The value of the annotation.