Copyright 2009,2010, Lapetus Systems Ltd. (All rights reserved)

com.lapetus_ltd._2009.xml.types
Class XLptsXmlRowSetTableType

java.lang.Object
  extended by com.lapetus_ltd._2009.xml.types.XLptsXmlRowSetTableType
Direct Known Subclasses:
TLptsXmlRowSetTableType

public class XLptsXmlRowSetTableType
extends java.lang.Object

XSD Generated Class: This holds the information for a table within the XLptsXmlRowSetType. It contains the columns and rows for a single table, and also contains a list of other tables so that primary-dynamic hierarchy can be maintained.

Java class for XLptsXmlRowSetTableType complex type.

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

 <complexType name="XLptsXmlRowSetTableType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="columnNamesListItem" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         <element name="rowListItem" type="{http://www.lapetus-ltd.com/2009/xml/types}XLptsXmlRowSetSingleRowType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<java.lang.String> columnNamesListItem
           
protected  java.lang.String name
           
protected  java.util.List<XLptsXmlRowSetSingleRowType> rowListItem
           
 
Constructor Summary
XLptsXmlRowSetTableType()
           
 
Method Summary
 java.util.List<java.lang.String> getColumnNamesListItem()
          Gets the value of the columnNamesListItem property.
 java.lang.String getName()
          Gets the value of the name property.
 java.util.List<XLptsXmlRowSetSingleRowType> getRowListItem()
          Gets the value of the rowListItem property.
 void setName(java.lang.String value)
          Sets the value of the name property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

columnNamesListItem

protected java.util.List<java.lang.String> columnNamesListItem

name

protected java.lang.String name

rowListItem

protected java.util.List<XLptsXmlRowSetSingleRowType> rowListItem
Constructor Detail

XLptsXmlRowSetTableType

public XLptsXmlRowSetTableType()
Method Detail

getColumnNamesListItem

public java.util.List<java.lang.String> getColumnNamesListItem()
Gets the value of the columnNamesListItem 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 columnNamesListItem property.

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

    getColumnNamesListItem().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getName

public java.lang.String getName()
Gets the value of the name property.

Returns:
possible object is String

getRowListItem

public java.util.List<XLptsXmlRowSetSingleRowType> getRowListItem()
Gets the value of the rowListItem 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 rowListItem property.

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

    getRowListItem().add(newItem);
 

Objects of the following type(s) are allowed in the list XLptsXmlRowSetSingleRowType


setName

public void setName(java.lang.String value)
Sets the value of the name property.

Parameters:
value - allowed object is String


Copyright 2009,2010, Lapetus Systems Ltd. (All rights reserved)