|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FormEntry | |
|---|---|
| de.mguennewig.pobjects.metadata | This package contains the metadata classes used by the PObject library. |
| de.mguennewig.pobjform | This package contains the PObjForm library, which support Swing dialogs and HTML forms that use the metadata of the PObjects library. |
| de.mguennewig.pobjform.html | This package contains the HTML form interface of the PObjForm library. |
| de.mguennewig.pobjform.swing | This package contains the Swing dialog interface of the PObjForm library. |
| de.mguennewig.pobjsearch | This package contains the PObjSearch framework that is based on the PObjForm library. |
| Uses of FormEntry in de.mguennewig.pobjects.metadata |
|---|
| Subclasses of FormEntry in de.mguennewig.pobjects.metadata | |
|---|---|
class |
ArrayEntry
A form entry for an array of the same type of form entries. |
class |
ButtonEntry
A pseudo form entry for a submit button. |
class |
FileEntry
A file selection entry within a form. |
class |
HeadingEntry
An entry in a form which shows some static text in form of a heading. |
class |
InputEntry
A form entry describes an input element within a form. |
class |
LinkEntry
A pseudo form entry to hold a popup-link to another page. |
class |
RadioEntry
A special kind of form entry, which adds a radio button to a fixed set of form entries. |
class |
RecordEntry
A special kind of form entry, which adds a fixed set of form entries. |
class |
SpacerEntry
A form entry for adding an empty line into the form. |
class |
TextAreaEntry
A special form entry that describes a text-area. |
class |
TextEntry
A form entry for displaying static text given by the application. |
class |
ValueEntry
Abstract base class for all form entries, which handle values. |
| Methods in de.mguennewig.pobjects.metadata that return FormEntry | |
|---|---|
FormEntry |
ArrayEntry.getChildEntry()
Returns the form entry specification for the elements of the array. |
FormEntry |
RecordEntry.getChildEntry(int index)
Returns the form entry specification for the n-th element of the record. |
FormEntry[] |
FormDecl.getEntries()
|
FormEntry |
FormDecl.getEntry(int index)
Return form entry for index. |
FormEntry |
FormDecl.getEntry(java.lang.String name)
Return form entry with the given name. |
| Constructors in de.mguennewig.pobjects.metadata with parameters of type FormEntry | |
|---|---|
ArrayEntry(java.lang.String name,
FormEntry childEntry)
Creates a new array entry for an attribute with standard layout. |
|
FormDecl(java.lang.String name,
FormDecl baseForm,
FormEntry[] entries)
Creates a new form declaration for all supported interfaces. |
|
FormDecl(java.lang.String name,
int formInterface,
FormDecl baseForm,
FormEntry[] entries)
Creates a new form declaration. |
|
RadioEntry(java.lang.String name,
FormEntry[] childEntries)
Creates a new radio entry with standard layout. |
|
RecordEntry(java.lang.String name,
FormEntry[] children)
Creates a new record entry with standard layout. |
|
| Uses of FormEntry in de.mguennewig.pobjform |
|---|
| Methods in de.mguennewig.pobjform that return FormEntry | |
|---|---|
FormEntry |
ArrayElement.getChildEntry()
Returns the form entry specification for the child elements. |
FormEntry |
AbstractArrayElement.getChildEntry()
Returns the form entry specification for the child elements. |
FormEntry |
FormElement.getEntry()
Returns the form entry specification for this element. |
FormEntry |
AbstractFormElement.getEntry()
Returns the form entry specification for this element. |
| Methods in de.mguennewig.pobjform with parameters of type FormEntry | |
|---|---|
FormElement |
PObjForm.createFormElement(FormEntry entry)
Creates a FormElement for one specified FormEntry. |
FormElement |
PObjForm.getElement(FormEntry entry)
Returns the FormElement for the specified FormEntry. |
boolean |
PObjForm.hasChanged(FormEntry entry)
Tests whether the value of the element for the given entry has changed. |
boolean |
AbstractPObjForm.hasChanged(FormEntry entry)
Tests whether the value of the element for the given entry has changed. |
void |
PObjForm.populateForm(Record record,
FormEntry[] entries)
Populates the specified form entries with the data from the record. |
void |
AbstractPObjForm.populateForm(Record record,
FormEntry[] entries)
Populates the specified form entries with the data from the record. |
void |
PObjForm.populateForm(Record record,
FormEntry[] entries,
boolean setCurrentAsInitial)
Populates the specified form entries with the data from the record. |
void |
AbstractPObjForm.populateForm(Record record,
FormEntry[] entries,
boolean setCurrentAsInitial)
Populates the specified form entries with the data from the record. |
void |
PObjForm.populateObject(FormEntry[] entries,
Record record)
Populates the record with the data from the form elements of the corresponding form entries. |
void |
AbstractPObjForm.populateObject(FormEntry[] entries,
Record record)
Populates the record with the data from the form elements of the corresponding form entries. |
void |
PObjForm.populateObject(FormEntry[] entries,
Record record,
boolean transferUnchangedValues)
Populates the record with the data from the form elements of the corresponding form entries. |
void |
AbstractPObjForm.populateObject(FormEntry[] entries,
Record record,
boolean transferUnchangedValues)
Populates the record with the data from the form elements of the corresponding form entries. |
| Constructors in de.mguennewig.pobjform with parameters of type FormEntry | |
|---|---|
AbstractFormElement(PObjForm form,
FormEntry entry)
Creates a new AbstractFormElement. |
|
AbstractValueElement(PObjForm form,
FormEntry entry)
Creates a new AbstractValueElement. |
|
| Uses of FormEntry in de.mguennewig.pobjform.html |
|---|
| Methods in de.mguennewig.pobjform.html with parameters of type FormEntry | |
|---|---|
FormElement |
PObjHtmlForm.createFormElement(FormEntry entry)
|
void |
PObjHtmlForm.write(Layout w,
FormEntry entry)
Writes the form entry into the HTML stream. |
void |
PObjHtmlForm.write(Layout w,
FormEntry[] entries)
Writes the form entries into the HTML stream. |
void |
PObjHtmlForm.writeElement(Layout w,
FormEntry entry,
boolean hidden)
Writes the form elements of the given entry directly to the layout. |
| Uses of FormEntry in de.mguennewig.pobjform.swing |
|---|
| Methods in de.mguennewig.pobjform.swing with parameters of type FormEntry | |
|---|---|
FormElement |
PObjSwingForm.createFormElement(FormEntry entry)
|
javax.swing.JComponent |
PObjSwingForm.getSwingComponent(FormEntry entry)
|
javax.swing.JPanel |
PObjSwingForm.write(FormEntry[] entries)
Writes this form/dialog into a new JPanel that will be returned. |
| Uses of FormEntry in de.mguennewig.pobjsearch |
|---|
| Methods in de.mguennewig.pobjsearch with parameters of type FormEntry | |
|---|---|
FormElement |
PClassSwingSearchForm.createFormElement(FormEntry entry)
|
FormElement |
PClassHtmlSearchForm.createFormElement(FormEntry entry)
|
FormElement |
PClassSwingSearchForm.getElement(FormEntry e)
|
FormElement |
PClassHtmlSearchForm.getElement(FormEntry e)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||