Java com.jgoodies.binding.adapter BasicComponentFactory fields, constructors, methods, implement or subclass

Example usage for Java com.jgoodies.binding.adapter BasicComponentFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.jgoodies.binding.adapter BasicComponentFactory.

The text is from its open source code.

Subclass

com.jgoodies.binding.adapter.BasicComponentFactory has subclasses.
Click this link to see all its subclasses.

Method

JCheckBoxcreateCheckBox(ValueModel valueModel, String markedText)
Creates and returns a check box with the specified text label that is bound to the given ValueModel.
JComboBoxcreateComboBox(SelectionInList selectionInList)
Creates and returns a non-editable JComboBox that is bound to the given SelectionInList.
JComboBoxcreateComboBox(SelectionInList selectionInList, ListCellRenderer cellRenderer)
Creates and returns a non-editable JComboBox that is bound to the given SelectionInList using the given cell renderer.
JFormattedTextFieldcreateFormattedTextField(ValueModel valueModel, Format format)
Creates and returns a formatted text field that binds its value to the given model and converts Strings to values using the given Format.
JFormattedTextFieldcreateFormattedTextField(ValueModel valueModel, JFormattedTextField.AbstractFormatter formatter)
Creates and returns a formatted text field that binds its value to the given model and converts Strings to values using the given Formatter.
JFormattedTextFieldcreateFormattedTextField(ValueModel valueModel, JFormattedTextField.AbstractFormatterFactory formatterFactory)
Creates and returns a formatted text field that binds its value to the given model and converts Strings to values using Formatters provided by the given AbstractFormatterFactory.
JFormattedTextFieldcreateFormattedTextField(ValueModel valueModel, String mask)
Creates and returns a formatted text field that binds its value to the given model and converts Strings to values using a MaskFormatter that is based on the given mask.
JFormattedTextFieldcreateIntegerField(ValueModel valueModel)
Creates and returns a formatted text field that is bound to the Integer value of the given ValueModel.
JFormattedTextFieldcreateIntegerField(ValueModel valueModel, int emptyNumber)
Creates and returns a formatted text field that is bound to the Integer value of the given ValueModel.
JFormattedTextFieldcreateIntegerField(ValueModel valueModel, NumberFormat numberFormat)
Creates and returns a formatted text field that is bound to the Integer value of the given ValueModel.
JLabelcreateLabel(ValueModel valueModel)
Creates and returns a text label that is bound to the given ValueModel.
JLabelcreateLabel(ValueModel valueModel, Format format)
Creates and returns a text label that is bound to the given ValueModel that is wrapped by a StringConverter .
JListcreateList(SelectionInList selectionInList)
Creates and returns a JList for the given SelectionInList.

If the selectionInList's selection holder is a ComponentValueModel it is synchronized with the visible and enabled state of the returned list.

JListcreateList(SelectionInList selectionInList, ListCellRenderer cellRenderer)
Creates and returns a JList for the given SelectionInList using the specified optional ListCellRenderer to render cells.

If the selectionInList's selection holder is a ComponentValueModel it is synchronized with the visible and enabled state of the returned list.

JPasswordFieldcreatePasswordField(ValueModel valueModel)
Creates and returns a JPasswordField with the content bound to the given ValueModel.
JPasswordFieldcreatePasswordField(ValueModel valueModel, boolean commitOnFocusLost)
Creates and returns a JPasswordField with the content bound to the given ValueModel.
JRadioButtoncreateRadioButton(ValueModel model, Object choice, String markedText)
Creates and returns a radio button with the specified text label that is bound to the given ValueModel.
JTextAreacreateTextArea(ValueModel valueModel)
Creates and returns a text area with the content bound to the given ValueModel.
JTextAreacreateTextArea(ValueModel valueModel, boolean commitOnFocusLost)
Creates and returns a text area with the content bound to the given ValueModel.
JTextFieldcreateTextField(ValueModel valueModel)
Creates and returns a text field with the content bound to the given ValueModel.
JTextFieldcreateTextField(ValueModel valueModel, boolean commitOnFocusLost)
Creates and returns a text field with the content bound to the given ValueModel.