Package | Description |
---|---|
fc.jdbc.dbo.generated |
These are sample tables, purely to show as an example of DBO generated code.
|
fc.web.forms |
Encapsulates HTML forms as java objects (Usage Diagram [in new window], Class Hierarchy Diagram).
|
fc.web.servlet |
Modifier and Type | Method and Description |
---|---|
static void |
alltypesMgr.addIfFilledValidators(Form form,
String prefix)
Validates a form field if it is filled by the user.
|
static void |
alltypesMgr.addValidators(Form form)
Convenience method that calls
alltypesMgr.addValidators(Form, String, String, Map) with a
null prefix/suffix/map |
static void |
alltypesMgr.addValidators(Form form,
Map map)
Convenience method that calls
alltypesMgr.addValidators(Form, String, String, Map) with a
null prefix/suffix and the specified map |
static void |
alltypesMgr.addValidators(Form form,
String prefix)
Convenience method that calls
#addValidators(Form, String, String, map) with the
specified prefix and a null suffix/map |
static void |
alltypesMgr.addValidators(Form form,
String prefix,
String suffix,
Map map)
Creates and attaches validators for all the fields in the
specified
Form . |
Modifier and Type | Method and Description |
---|---|
Form |
Form.add(Dependency d)
Adds the specified dependency to the form.
|
Form |
Form.add(Field field)
Adds the specified element to the form.
|
Form |
Form.add(FieldRef ref)
Adds a
FieldRef to this Form. |
Form |
FormSequence.get(String name)
Returns the form with the specified name or null
if a form with that name does not exist
|
Form |
FormSequence.getFirstRemaining() |
Modifier and Type | Method and Description |
---|---|
void |
FormSequence.add(Form f)
Adds a form to the sequence
|
boolean |
FormSequence.isDone(Form f) |
void |
FormSequence.setDone(Form form,
boolean done)
specify true to mark the form as done
|
Constructor and Description |
---|
FormValidator(Form f,
String name,
String errorMessage)
Creates a new validator and adds it to the specified
form.
|
SubmitHackedHandler(Form form) |
VConditional(Form f,
String name,
String errorMessage) |
VFilledGroup(Form f,
String name,
String errorMessage,
Field[] fields) |
VFilledGroup(Form f,
String name,
String errorMessage,
List fields) |
VFilledOnChoice(Form f,
String name,
String errorMessage,
ChoiceGroup cg,
String choiceValue,
Field[] postFields) |
VFilledOnChoice(Form f,
String name,
String errorMessage,
ChoiceGroup cg,
String choiceValue,
List postFields) |
VFilledOnFilled(Form f,
String name,
String errorMessage,
VFilledGroup preValidator,
VFilledGroup postValidator) |
VPasswordGroup(Form f,
String name,
String errorMessage,
Password field_one,
Password field_two) |
VSameText(Form f,
String name,
String errorMessage,
Text field_one,
Text field_two) |
Modifier and Type | Method and Description |
---|---|
Form |
WebApp.getForm(String name)
Convenience method to return a form stored previously via the
putForm method. |
Modifier and Type | Method and Description |
---|---|
void |
WebApp.putForm(Form f) |