Home | History | Annotate | Download | only in commands

Lines Matching defs:form

24 import org.jivesoftware.smackx.Form;

35 * list and the result is stored as a form in the command instance, i.e. the
36 * <code>getForm</code> method retrieves a form with all the users.
74 // TODO: information related to the execution, e.g. the form to fill. Maybe this
178 * Returns the form of the current stage. Usually it is the form that must
184 * @return the form of the current stage to fill out or the result of the
187 public Form getForm() {
192 return new Form(data.getForm());
197 * Sets the form of the current stage. This should be used when setting a
198 * response. It could be a form to fill out the information needed to go to
201 * @param form the form of the current stage to fill out or the result of the
204 protected void setForm(Form form) {
205 data.setForm(form.getDataFormToSend());
219 * the <code>response</code>. This form must be the answer form of the
224 * @param response the form answer of the previous stage.
227 public abstract void next(Form response) throws XMPPException;
231 * <code>response</code>. This form must be the answer form of the
236 * @param response the form answer of the previous stage.
239 public abstract void complete(Form response) throws XMPPException;
425 * form did not provide one or more required fields).