Package net.xoetrope.xui.data.table

Examples of net.xoetrope.xui.data.table.XRowModel


   * @return The value of the XModel or the attribute
   * @param element The path to the XModel we require
   */
  public Object get( String element )
  {
    XRowModel drm = new XRowModel( this, rowIdx );
    return drm.get( element );
  }
View Full Code Here


   * @param i The index of the values array
   * @return The XModel at location i
   */
  public XModel get( int i )
  {
    XModel databaseRowModel = new XRowModel( this, i );
    databaseRowModel.setParent( this );
    return databaseRowModel;
  }
View Full Code Here

   * @param i The index of the listitem
   * @return The value of the listitem
   */
  public Object get( int i )
  {
    XRowModel row = (XRowModel)model.get( i );
    return row.getFieldValue( outputFieldIdx );
  }
View Full Code Here

   * @param fieldIdx the field index
   * @return The value of the listitem
   */
  public Object get( int i, int fieldIdx )
  {
    XRowModel row = (XRowModel)model.get( i );
    return row.getFieldValue( fieldIdx );
  }
View Full Code Here

TOP

Related Classes of net.xoetrope.xui.data.table.XRowModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.