Uses of Interface
ch.sahits.model.gui.IFormElement

Packages that use IFormElement
ch.sahits.codegen.java.gui.util   
ch.sahits.model.gui   
 

Uses of IFormElement in ch.sahits.codegen.java.gui.util
 

Methods in ch.sahits.codegen.java.gui.util that return types with arguments of type IFormElement
 java.util.List<IFormElement> GUIHelper.inputFields()
          Retrieve a list of all input elements
 

Methods in ch.sahits.codegen.java.gui.util with parameters of type IFormElement
 IFormGroup GUIHelper.getParentGroup(IFormElement e)
          Retrieve the parent group of the element
 java.lang.String SWTGUIHelper.getSWTClass(IFormElement element)
          Retrieve the name of the SWT class for the form element
 java.lang.String SWTGUIHelper.initializeString(IFormElement element)
          Create the constructor call for the SWT elements
 java.lang.String GUIHelper.toName(IFormElement element)
          Convert the name of an element into a variable name
 

Uses of IFormElement in ch.sahits.model.gui
 

Subinterfaces of IFormElement in ch.sahits.model.gui
 interface IFormBaseList
          This basic interface defines a list with multiple entries
 interface IFormButton
          This interface defines a button
 interface IFormCheckbox
          This interface defines a check box button
 interface IFormCombo
          Definition of a drop-down combo
 interface IFormFileUpload
          This input field defines a form field for file upload
 interface IFormGroup
          This interface defines a container that can hold several form elements.
 interface IFormHidden
          This interface defines a hidden form value
 interface IFormImageButton
          This interface denotes a image button
 interface IFormInput
          Definition of an input field
 interface IFormInputElement
          This interface defines a class of the form that accepts an input.
 interface IFormLabel
          This interface defines normal text within the form.
 interface IFormList
          This interface defines a form list
 interface IFormPasswordInput
          This interface defines a passwor input field
 interface IFormRadioButton
          This interface defines a radio button element of a form
 interface IFormResetButton
          This interface denotes a reset button
 interface IFormSubmitButton
          This interface denotes a submit button
 

Methods in ch.sahits.model.gui that return types with arguments of type IFormElement
 java.util.List<IFormElement> IForm.elements()
          Retrieve a list of all elements in a form
 java.util.List<IFormElement> IFormGroup.elements()
          Retrieve a list of all elements of this group
 java.util.List<IFormElement> IForm.flatten()
          Flatten all elements of the group into a list
 java.util.List<IFormElement> IFormGroup.flatten()
          Flatten all elements of the group into a list
 

Methods in ch.sahits.model.gui with parameters of type IFormElement
 void IForm.add(IFormElement element)
          Add an element at the last position of the list
 void IFormGroup.add(IFormElement element)
          Add an element to the group
 void IForm.add(IFormElement element, int index)
          Add an element at position indexof the list.