Package org.openforis.collect.mondrian
Class View
- java.lang.Object
-
- org.openforis.collect.mondrian.View
-
public class View extends Object
A collection of SQL statements, one per dialect.Java class for View complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="View"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SQL" type="{}SQL" maxOccurs="unbounded"/> </sequence> <attribute name="alias" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description View()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAlias()Gets the value of the alias property.List<SQL>getSQL()Gets the value of the sql property.voidsetAlias(String value)Sets the value of the alias property.
-
-
-
Method Detail
-
getSQL
public List<SQL> getSQL()
Gets the value of the sql property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the sql property.For example, to add a new item, do as follows:
getSQL().add(newItem);Objects of the following type(s) are allowed in the list
SQL
-
getAlias
public String getAlias()
Gets the value of the alias property.- Returns:
- possible object is
String
-
-