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

New constructor for fields of type FIXED

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2300 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-04-26 02:34:29 +00:00 committed by gdombiak
parent 5289b67214
commit a9f712be2f

View file

@ -91,6 +91,15 @@ public class FormField {
this.variable = variable; this.variable = variable;
} }
/**
* Creates a new FormField of type FIXED. The fields of type FIXED do not define a variable
* name.
*
*/
public FormField() {
this.type = FormField.TYPE_FIXED;
}
/** /**
* Returns a description that provides extra clarification about the question. This information * Returns a description that provides extra clarification about the question. This information
* could be presented to the user either in tool-tip, help button, or as a section of text * could be presented to the user either in tool-tip, help button, or as a section of text