Package com.microstrategy.web.blocks
Class BlockPropertyAnnotation
- java.lang.Object
-
- com.microstrategy.web.blocks.BlockPropertyAnnotation
-
public class BlockPropertyAnnotation extends java.lang.ObjectThis 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.StringgetName()Returns the name of the annotation.java.lang.StringgetValue()Returns the value of the annotation.voidsetValue(java.lang.String value)Sets the value of the annotation.
-
-
-
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.
-
-