ch.sahits.model.gui
Interface IFormElement

All Known Subinterfaces:
IFormBaseList, IFormButton, IFormCheckbox, IFormCombo, IFormFileUpload, IFormGroup, IFormHidden, IFormImageButton, IFormInput, IFormInputElement, IFormLabel, IFormList, IFormPasswordInput, IFormRadioButton, IFormResetButton, IFormSubmitButton

public interface IFormElement

This interface is a base interface for all elements that may be contained in a form

Since:
0.9.4
Author:
Andi Hotz

Method Summary
 java.lang.String getId()
          Retrieve the id of the form element
 java.lang.String getName()
          Retrieve the name of the form element
 java.lang.String getTooltip()
          Retrieve the tooltip of the element
 void setId(java.lang.String id)
          Set the id of the element
 void setName(java.lang.String name)
          Set the name of the element
 void setTooltip(java.lang.String tooltip)
          Set the tooltip for the element
 

Method Detail

getName

java.lang.String getName()
Retrieve the name of the form element

Returns:
element name

setName

void setName(java.lang.String name)
Set the name of the element

Parameters:
name - of the element

getId

java.lang.String getId()
Retrieve the id of the form element

Returns:
element id

setId

void setId(java.lang.String id)
Set the id of the element

Parameters:
id - of the element

getTooltip

java.lang.String getTooltip()
Retrieve the tooltip of the element

Returns:
element tooltip

setTooltip

void setTooltip(java.lang.String tooltip)
Set the tooltip for the element

Parameters:
tooltip - of the element