Home | History | Annotate | Download | only in pubsub

Lines Matching refs:Form

16 import org.jivesoftware.smackx.Form;

19 * Generic packet extension which represents any pubsub form that is
22 * Form types are defined in {@link FormNodeType}.
28 private Form configForm;
31 * Create a {@link FormNode} which contains the specified form.
33 * @param formType The type of form being sent
34 * @param submitForm The form
36 public FormNode(FormNodeType formType, Form submitForm)
41 throw new IllegalArgumentException("Submit form cannot be null");
46 * Create a {@link FormNode} which contains the specified form, which is
49 * @param formType The type of form being sent
50 * @param nodeId The node the form is associated with
51 * @param submitForm The form
53 public FormNode(FormNodeType formType, String nodeId, Form submitForm)
58 throw new IllegalArgumentException("Submit form cannot be null");
63 * Get the Form that is to be sent, or was retrieved from the server.
65 * @return The form
67 public Form getForm()