Package org.openforis.collect.mondrian
Class CalculatedMemberProperty
- java.lang.Object
-
- org.openforis.collect.mondrian.CalculatedMemberProperty
-
public class CalculatedMemberProperty extends Object
Property of a calculated member defined against a cube. It must have either an expression or a value.Java class for CalculatedMemberProperty complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CalculatedMemberProperty"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="caption" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="expression" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringcaptionprotected Stringdescriptionprotected Stringexpressionprotected Stringnameprotected Stringvalue
-
Constructor Summary
Constructors Constructor Description CalculatedMemberProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCaption()Gets the value of the caption property.StringgetDescription()Gets the value of the description property.StringgetExpression()Gets the value of the expression property.StringgetName()Gets the value of the name property.StringgetValue()Gets the value of the value property.voidsetCaption(String value)Sets the value of the caption property.voidsetDescription(String value)Sets the value of the description property.voidsetExpression(String value)Sets the value of the expression property.voidsetName(String value)Sets the value of the name property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getCaption
public String getCaption()
Gets the value of the caption property.- Returns:
- possible object is
String
-
setCaption
public void setCaption(String value)
Sets the value of the caption property.- Parameters:
value- allowed object isString
-
getDescription
public String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(String value)
Sets the value of the description property.- Parameters:
value- allowed object isString
-
getExpression
public String getExpression()
Gets the value of the expression property.- Returns:
- possible object is
String
-
setExpression
public void setExpression(String value)
Sets the value of the expression property.- Parameters:
value- allowed object isString
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
-