Uses of Class
com.jformdesigner.model.FormComponent
-
Packages that use FormComponent Package Description com.jformdesigner.model -
-
Uses of FormComponent in com.jformdesigner.model
Subclasses of FormComponent in com.jformdesigner.model Modifier and Type Class Description classFormContainerA form container represents aContainerin the form model.classFormNonVisualA non-visual form component represents a non-visual JavaBean.classFormRootA form root is a container for all top-level components in a form model.classFormWindowA form window represents aWindowin the form model.Methods in com.jformdesigner.model that return FormComponent Modifier and Type Method Description FormComponentFormContainer. getComponent(int index)Returns the form component atindex.FormComponentFormEvent. getComponent()Returns the form component for this object.FormComponentFormLayoutConstraints. getComponent()Returns the form component for this object.FormComponent[]FormContainer. getComponents()Returns all form components in this form container.FormComponentFormModel. getFormComponent(String name)Returns the form component for the specified component name.FormComponent[]FormContainer. getMenuBarAndComponents()Returns the menu bar and all form components in this form container.Methods in com.jformdesigner.model that return types with arguments of type FormComponent Modifier and Type Method Description Iterator<Map.Entry<FormComponent,FormLayoutConstraints>>FormLayoutManager. iterator()Returns an iterator over the constraints in this object.Methods in com.jformdesigner.model with parameters of type FormComponent Modifier and Type Method Description voidFormContainer. add(FormComponent comp)Adds a form component to the end of this form container.voidFormContainer. add(FormComponent comp, int index)Adds a form component to this form container at the specified position.voidFormContainer. add(FormComponent comp, FormLayoutConstraints constraints)Adds a form component to the end of this form container and sets the specified constraints in the form layout manager of this container.voidFormContainer. add(FormComponent comp, FormLayoutConstraints constraints, int index)Adds a form component to this form container at the specified position and sets the specified constraints in the form layout manager of this container.intFormContainer. getComponentIndex(FormComponent comp)Returns the index ofcompin this form container; or -1 if the form component is not a child of this form container.FormLayoutConstraintsFormLayoutManager. getConstraints(FormComponent comp)Returns the form layout constraints for the specified form component, ornullthe form component has no constraints.voidFormContainer. remove(FormComponent comp)Removes the specified form component from this form container.voidFormContainer. replace(int index, FormComponent comp, FormLayoutConstraints constraints)Replaces the form component at the specified index with the given form component and constraints.FormLayoutConstraintsFormLayoutManager. setConstraints(FormComponent comp, FormLayoutConstraints constraints)Sets the form layout constraints for a form component.booleanFormComponentVisitor. visit(FormComponent comp)Visits the given form component.
-