1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-29 14:54:50 +02:00

Code cleanup.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@10875 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2008-11-13 18:30:49 +00:00 committed by matt
parent 334838d28e
commit 5e559d0ee2

View file

@ -58,6 +58,8 @@ public class Form {
* extension that matches the elementName and namespace "x","jabber:x:data". * extension that matches the elementName and namespace "x","jabber:x:data".
* *
* @param packet the packet used for gathering data. * @param packet the packet used for gathering data.
* @return the data form parsed from the packet or <tt>null</tt> if there was not
* a form in the packet.
*/ */
public static Form getFormFrom(Packet packet) { public static Form getFormFrom(Packet packet) {
// Check if the packet includes the DataForm extension // Check if the packet includes the DataForm extension
@ -120,8 +122,8 @@ public class Form {
* @param variable the variable name that was completed. * @param variable the variable name that was completed.
* @param value the String value that was answered. * @param value the String value that was answered.
* @throws IllegalStateException if the form is not of type "submit". * @throws IllegalStateException if the form is not of type "submit".
* @throws IllegalArgumentException if the form does not include the specified variable. * @throws IllegalArgumentException if the form does not include the specified variable or
* @throws IllegalArgumentException if the answer type does not correspond with the field type. * if the answer type does not correspond with the field type..
*/ */
public void setAnswer(String variable, String value) { public void setAnswer(String variable, String value) {
FormField field = getField(variable); FormField field = getField(variable);
@ -146,8 +148,8 @@ public class Form {
* @param variable the variable name that was completed. * @param variable the variable name that was completed.
* @param value the int value that was answered. * @param value the int value that was answered.
* @throws IllegalStateException if the form is not of type "submit". * @throws IllegalStateException if the form is not of type "submit".
* @throws IllegalArgumentException if the form does not include the specified variable. * @throws IllegalArgumentException if the form does not include the specified variable or
* @throws IllegalArgumentException if the answer type does not correspond with the field type. * if the answer type does not correspond with the field type.
*/ */
public void setAnswer(String variable, int value) { public void setAnswer(String variable, int value) {
FormField field = getField(variable); FormField field = getField(variable);
@ -159,7 +161,7 @@ public class Form {
&& !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) { && !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) {
throw new IllegalArgumentException("This field is not of type int."); throw new IllegalArgumentException("This field is not of type int.");
} }
setAnswer(field, new Integer(value)); setAnswer(field, value);
} }
/** /**
@ -170,8 +172,8 @@ public class Form {
* @param variable the variable name that was completed. * @param variable the variable name that was completed.
* @param value the long value that was answered. * @param value the long value that was answered.
* @throws IllegalStateException if the form is not of type "submit". * @throws IllegalStateException if the form is not of type "submit".
* @throws IllegalArgumentException if the form does not include the specified variable. * @throws IllegalArgumentException if the form does not include the specified variable or
* @throws IllegalArgumentException if the answer type does not correspond with the field type. * if the answer type does not correspond with the field type.
*/ */
public void setAnswer(String variable, long value) { public void setAnswer(String variable, long value) {
FormField field = getField(variable); FormField field = getField(variable);
@ -183,7 +185,7 @@ public class Form {
&& !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) { && !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) {
throw new IllegalArgumentException("This field is not of type long."); throw new IllegalArgumentException("This field is not of type long.");
} }
setAnswer(field, new Long(value)); setAnswer(field, value);
} }
/** /**
@ -194,8 +196,8 @@ public class Form {
* @param variable the variable name that was completed. * @param variable the variable name that was completed.
* @param value the float value that was answered. * @param value the float value that was answered.
* @throws IllegalStateException if the form is not of type "submit". * @throws IllegalStateException if the form is not of type "submit".
* @throws IllegalArgumentException if the form does not include the specified variable. * @throws IllegalArgumentException if the form does not include the specified variable or
* @throws IllegalArgumentException if the answer type does not correspond with the field type. * if the answer type does not correspond with the field type.
*/ */
public void setAnswer(String variable, float value) { public void setAnswer(String variable, float value) {
FormField field = getField(variable); FormField field = getField(variable);
@ -207,7 +209,7 @@ public class Form {
&& !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) { && !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) {
throw new IllegalArgumentException("This field is not of type float."); throw new IllegalArgumentException("This field is not of type float.");
} }
setAnswer(field, new Float(value)); setAnswer(field, value);
} }
/** /**
@ -218,8 +220,8 @@ public class Form {
* @param variable the variable name that was completed. * @param variable the variable name that was completed.
* @param value the double value that was answered. * @param value the double value that was answered.
* @throws IllegalStateException if the form is not of type "submit". * @throws IllegalStateException if the form is not of type "submit".
* @throws IllegalArgumentException if the form does not include the specified variable. * @throws IllegalArgumentException if the form does not include the specified variable or
* @throws IllegalArgumentException if the answer type does not correspond with the field type. * if the answer type does not correspond with the field type.
*/ */
public void setAnswer(String variable, double value) { public void setAnswer(String variable, double value) {
FormField field = getField(variable); FormField field = getField(variable);
@ -231,7 +233,7 @@ public class Form {
&& !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) { && !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) {
throw new IllegalArgumentException("This field is not of type double."); throw new IllegalArgumentException("This field is not of type double.");
} }
setAnswer(field, new Double(value)); setAnswer(field, value);
} }
/** /**
@ -242,8 +244,8 @@ public class Form {
* @param variable the variable name that was completed. * @param variable the variable name that was completed.
* @param value the boolean value that was answered. * @param value the boolean value that was answered.
* @throws IllegalStateException if the form is not of type "submit". * @throws IllegalStateException if the form is not of type "submit".
* @throws IllegalArgumentException if the form does not include the specified variable. * @throws IllegalArgumentException if the form does not include the specified variable or
* @throws IllegalArgumentException if the answer type does not correspond with the field type. * if the answer type does not correspond with the field type.
*/ */
public void setAnswer(String variable, boolean value) { public void setAnswer(String variable, boolean value) {
FormField field = getField(variable); FormField field = getField(variable);
@ -295,7 +297,7 @@ public class Form {
* @throws IllegalStateException if the form is not of type "submit". * @throws IllegalStateException if the form is not of type "submit".
* @throws IllegalArgumentException if the form does not include the specified variable. * @throws IllegalArgumentException if the form does not include the specified variable.
*/ */
public void setAnswer(String variable, List values) { public void setAnswer(String variable, List<String> values) {
if (!isSubmitType()) { if (!isSubmitType()) {
throw new IllegalStateException("Cannot set an answer if the form is not of type " + throw new IllegalStateException("Cannot set an answer if the form is not of type " +
"\"submit\""); "\"submit\"");