Uses of Class
org.jivesoftware.smackx.FormField

Packages that use FormField
org.jivesoftware.smackx Smack extensions API. 
org.jivesoftware.smackx.packet XML packets that are part of the XMPP extension protocols. 
 

Uses of FormField in org.jivesoftware.smackx
 

Methods in org.jivesoftware.smackx that return FormField
 FormField Form.getField(java.lang.String variable)
          Returns the field of the form whose variable matches the specified variable.
 

Methods in org.jivesoftware.smackx that return types with arguments of type FormField
 java.util.Iterator<FormField> Form.getFields()
          Returns an Iterator for the fields that are part of the form.
 

Methods in org.jivesoftware.smackx with parameters of type FormField
 void Form.addField(FormField field)
          Adds a new field to complete as part of the form.
 

Uses of FormField in org.jivesoftware.smackx.packet
 

Methods in org.jivesoftware.smackx.packet that return types with arguments of type FormField
 java.util.Iterator<FormField> DataForm.getFields()
          Returns an Iterator for the fields that are part of the form.
 java.util.Iterator<FormField> DataForm.ReportedData.getFields()
          Returns the fields returned from a search.
 java.util.Iterator<FormField> DataForm.Item.getFields()
          Returns the fields that define the data that goes with the item.
 

Methods in org.jivesoftware.smackx.packet with parameters of type FormField
 void DataForm.addField(FormField field)
          Adds a new field as part of the form.
 

Constructor parameters in org.jivesoftware.smackx.packet with type arguments of type FormField
DataForm.Item(java.util.List<FormField> fields)
           
DataForm.ReportedData(java.util.List<FormField> fields)