Uses of Interface
jet.html.JetComponent

Packages that use JetComponent
jet.html   
jet.html.core   
jet.html.impl   
jet.servlet.internal   
 

Uses of JetComponent in jet.html
 

Subinterfaces of JetComponent in jet.html
 interface JetButton
           
 interface JetCheckbox
           
 interface JetChildComponent
           
 interface JetDisplayMessage
           
 interface JetFieldset
           
 interface JetFile
           
 interface JetFiller
           
 interface JetForm
           
 interface JetGridPanel
           
 interface JetGridPanel2
           
 interface JetImage
           
 interface JetInput
           
 interface JetInputComponent
           
 interface JetLabel
           
 interface JetOption
           
 interface JetOutput
           
 interface JetOutputComponent
           
 interface JetParentComponent
           
 interface JetRadiobutton
           
 interface JetRandomizer
           
 interface JetSelection
           
 interface JetTextArea
           
 

Methods in jet.html that return JetComponent
 JetComponent JetComponent.findComponent(java.lang.String identifier)
           
 JetComponent JetForm.findComponent(java.lang.String identifier)
           
 

Methods in jet.html that return types with arguments of type JetComponent
 java.util.Collection<JetComponent> JetComponent.findComponents(java.lang.Class c)
           
 java.util.Collection<JetComponent> JetForm.findComponents(java.lang.Class c)
           
 

Methods in jet.html with parameters of type JetComponent
 void JetForm.addValidation(JetComponent component, java.util.List validationRules)
           
 

Uses of JetComponent in jet.html.core
 

Classes in jet.html.core that implement JetComponent
 class JetChildComponent
          Abstract classdescribing child components and implements generic methods and fields
 class JetComponent
          Abstract class describing a jet component style and implements generic fields and methods
 class JetInputComponent
          This abstract class defines how input components have to be design and implements generic field methods
 class JetOutputComponent
          This abstract class describes how output components should be designed and implements general behave
 class JetParentComponent
          This abstract class describes how parent objects work and implement general behave
 

Methods in jet.html.core that return JetComponent
 JetComponent JetComponent.findComponent(java.lang.String identifier)
          Method to get component by identifier
 

Methods in jet.html.core that return types with arguments of type JetComponent
 java.util.Collection<JetComponent> JetComponent.findComponents(java.lang.Class c)
          Method to get components by class - e.g. retrieving all input fields
private  java.util.Collection<JetComponent> JetComponent.findComponents(java.lang.Class c, java.util.Collection result)
          Method to get components by class - e.g. retrieving all input fields the HashMap returned must be given
 

Uses of JetComponent in jet.html.impl
 

Classes in jet.html.impl that implement JetComponent
 class JetButton
          This class renders and decodes an submit component
 class JetCheckbox
          This class renders and decodes an checkbox component
 class JetDisplayMessage
          This class just renders the given content to the form
 class JetFieldset
           
 class JetFile
           
 class JetFiller
          This class is just a placeholder and renders nothing
 class JetForm
           
 class JetGridPanel
          This class renders a gridpanelall
 class JetGridPanel2
          This class renders a gridpanelall - same as JetGridPanel exept that there each first row has a styleclass called given styleclass name + "1" and each second row stylclass name + "2"
 class JetImage
           
 class JetInput
          This class redners input fields
 class JetLabel
          This class renders a html label field
 class JetOption
          This class renders a html option
 class JetOutput
          This class just renders the given content to the form
 class JetRadiobutton
          This class renders a radiobutton
 class JetRandomizer
          This class redners input fields
 class JetSelection
          This class renders a selection box
 class JetTextArea
          This class redners input fields
 

Methods in jet.html.impl that return JetComponent
 JetComponent JetForm.findComponent(java.lang.String identifier)
           
protected  JetComponent JetForm.getElement(java.lang.String identifier)
           
 

Methods in jet.html.impl with parameters of type JetComponent
protected  void JetForm.addElement(JetComponent element)
           
 void JetForm.addValidation(JetComponent component, java.util.List validationRules)
           
 

Uses of JetComponent in jet.servlet.internal
 

Methods in jet.servlet.internal with parameters of type JetComponent
private  void XMLJetdefsReader.doValidateTag(JetComponent current, org.w3c.dom.Node node)