com.metsci.glimpse.dspl.schema
Class Table

java.lang.Object
  extended by com.metsci.glimpse.dspl.schema.Table

public class Table
extends java.lang.Object

A table provides data for the dataset. A table may provide data for a concept or for a slice.

Java class for Table complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Table">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="info" type="{http://schemas.google.com/dspl/2010}Info" minOccurs="0"/>
         <element name="column" maxOccurs="unbounded">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence>
                   <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
                 </sequence>
                 <attribute name="id" use="required" type="{http://schemas.google.com/dspl/2010}LocalId" />
                 <attribute name="type" use="required" type="{http://schemas.google.com/dspl/2010}DataType" />
                 <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="data" type="{http://schemas.google.com/dspl/2010}Data" minOccurs="0"/>
       </sequence>
       <attribute name="id" use="required" type="{http://schemas.google.com/dspl/2010}Id" />
     </restriction>
   </complexContent>
 </complexType>
 


Nested Class Summary
static class Table.Column
          Java class for anonymous complex type.
 
Constructor Summary
Table()
           
 
Method Summary
 java.util.List<Table.Column> getColumn()
          Gets the value of the column property.
 Data getData()
          Gets the value of the data property.
 DataSet getDataSet()
           
 java.lang.String getId()
          Gets the value of the id property.
 Info getInfo()
          Gets the value of the info property.
 void setData(Data value)
          Sets the value of the data property.
 void setDataSet(DataSet dataSet)
           
 void setId(java.lang.String value)
          Sets the value of the id property.
 void setInfo(Info value)
          Sets the value of the info property.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Table

public Table()
Method Detail

getInfo

public Info getInfo()
Gets the value of the info property.

Returns:
possible object is Info

setInfo

public void setInfo(Info value)
Sets the value of the info property.

Parameters:
value - allowed object is Info

getColumn

public java.util.List<Table.Column> getColumn()
Gets the value of the column 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 set method for the column property.

For example, to add a new item, do as follows:

    getColumn().add(newItem);
 

Objects of the following type(s) are allowed in the list Table.Column


getData

public Data getData()
Gets the value of the data property.

Returns:
possible object is Data

setData

public void setData(Data value)
Sets the value of the data property.

Parameters:
value - allowed object is Data

getId

public java.lang.String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(java.lang.String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getDataSet

public DataSet getDataSet()

setDataSet

public void setDataSet(DataSet dataSet)


Copyright © 2012 Metron, Inc.. All Rights Reserved.