Package org.jivesoftware.smackx.packet.DataForm

Examples of org.jivesoftware.smackx.packet.DataForm.ReportedData


    Hashtable<String,String> columns = new Hashtable<String,String>();
    Vector<Object> rowData = new Vector<Object>();
    Iterator extensions = results.getExtensions();
    while( extensions.hasNext() ){
      DataForm dataForm = (DataForm)extensions.next();
      ReportedData rData = dataForm.getReportedData();
      Iterator fields = rData.getFields();
      while( fields.hasNext() ){
        FormField fField = (FormField)fields.next();
        columns.put( fField.getVariable(), fField.getLabel() );
      }
     
View Full Code Here

TOP

Related Classes of org.jivesoftware.smackx.packet.DataForm.ReportedData

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.