Class semper.tinguin.Entry
All Packages Class Hierarchy This Package Previous Next Index
Class semper.tinguin.Entry
java.lang.Object
|
+----semper.tinguin.Entry
- public class Entry
- extends Object
This class provides a way of specifying the properties
of an entry within a form dialog. Using this, it is possible
to specify whether the user input is visible or not while entering
it in a text field. Also it allows one to make some entries mandatory
while others are optional.
- Version:
- 0.1
- Author:
- Tobias Himstedt
- See Also:
- evalForm, formMessage
-
Entry(String)
- Construct a new entry.
-
Entry(String, boolean)
- Construct a new entry.
-
Entry(String, boolean, boolean)
- Construct a new entry.
Entry
public Entry(String name,
boolean visibility,
boolean required)
- Construct a new entry. This spefifes what kind of entry
should be used in for a text field input. For example, should
it be visible what is entered in the field (passwords)
- Parameters:
- name - How should the field be labeled
- visibility - Should the input be visible (-> passwords)
- required - Is the entry optional or required
Entry
public Entry(String name,
boolean visibility)
- Construct a new entry. This spefifes what kind of entry
should be used in for a text field input. For example, should
it be visible what is entered in the field (passwords).
The user input for this entry is optional.
- Parameters:
- name - How should the field be labeled
- visibility - Should the input be visible (-> passwords)
Entry
public Entry(String name)
- Construct a new entry. This spefifes what kind of entry
should be used in for a text field input. For example, should
it be visible what is entered in the field (passwords).
The user input for this entry is visible and optional.
- Parameters:
- name - How should the field be labeled
All Packages Class Hierarchy This Package Previous Next Index