Home | History | Annotate | Download | only in commands

Lines Matching refs:Form

30 import org.jivesoftware.smackx.Form;
42 * state of "completed" and a form or notes that applies.
94 public void complete(Form form) throws XMPPException {
95 executeAction(Action.complete, form, packetReplyTimeout);
105 * in the Form. This form must be the anwser form of the previous stage. If
108 * @param form the form anwser of the previous stage.
111 public void execute(Form form) throws XMPPException {
112 executeAction(Action.execute, form, packetReplyTimeout);
116 public void next(Form form) throws XMPPException {
117 executeAction(Action.next, form, packetReplyTimeout);
130 * Executes the <code>action</codo> with the <code>form</code>.
131 * The action could be any of the available actions. The form must
135 * @param form the form with the information.
139 private void executeAction(Action action, Form form, long timeout) throws XMPPException {
140 // TODO: Check that all the required fields of the form were filled, if
150 if (form != null) {
151 data.setForm(form.getDataFormToSend());