|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.awt.Component java.awt.Container javax.swing.JComponent javax.swing.JPanel com.jidesoft.filter.ValueEditor
public class ValueEditor
This is the component contained in the CustomFilterEditor
. Each ValueEditor contains a combo box and a value
label.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class javax.swing.JPanel |
---|
JPanel.AccessibleJPanel |
Nested classes/interfaces inherited from class javax.swing.JComponent |
---|
JComponent.AccessibleJComponent |
Nested classes/interfaces inherited from class java.awt.Container |
---|
Container.AccessibleAWTContainer |
Nested classes/interfaces inherited from class java.awt.Component |
---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
Field Summary | |
---|---|
protected JComponent |
_comboBox
|
protected ConverterContext |
_converterContext
|
protected Class |
_dataType
|
protected Object[] |
_possibleValues
|
protected JLabel |
_valueLabel
|
Fields inherited from class javax.swing.JComponent |
---|
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
Fields inherited from class java.awt.Component |
---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface java.awt.image.ImageObserver |
---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
---|---|
ValueEditor(Class dataType,
ConverterContext converterContext,
Object[] possibleValues)
The constructor. |
Method Summary | |
---|---|
protected DateComboBox |
createDateComboBoxButton()
Creates the button to show the date chooser panel. |
protected void |
customizeValueEditor(JPanel panel,
Class dataType,
JComponent comboBox)
Customizes the value editor with a component to make it value editing easier. |
protected String |
getResourceString(String key)
Gets the resource string used in ValueEditor. |
Object |
getValue()
Gets the value currently presented by the ValueEditor. |
String |
getValueInString()
Gets the value currently presented by the ValueEditor. |
protected void |
initComponents()
Initialize the child components inside the ValueEditor. |
boolean |
isLabelVisible()
Gets the flag indicating if the value label is visible or not. |
void |
setDataType(Class dataType,
ConverterContext converterContext)
Sets the data type and the converter context. |
void |
setEditable(boolean editable)
Configures if the _comboBox in the ValueEditor is editable. |
void |
setEnabled(boolean enabled)
|
void |
setLabelVisible(boolean labelVisible)
Sets the flag indicating if the value label is visible or not. |
void |
setLocale(Locale l)
|
void |
setValue(Object value)
Sets the ValueEditor's value. |
Methods inherited from class javax.swing.JPanel |
---|
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected Class _dataType
protected ConverterContext _converterContext
protected Object[] _possibleValues
protected JComponent _comboBox
protected JLabel _valueLabel
Constructor Detail |
---|
public ValueEditor(Class dataType, ConverterContext converterContext, Object[] possibleValues)
dataType
- the data type the ValueEditor works onconverterContext
- the converter contextpossibleValues
- the possible valuesMethod Detail |
---|
public void setDataType(Class dataType, ConverterContext converterContext)
dataType
- the data type the ValueEditor works onconverterContext
- the converter contextprotected void initComponents()
public void setEditable(boolean editable)
editable
- the flagpublic void setLocale(Locale l)
setLocale
in class Component
protected void customizeValueEditor(JPanel panel, Class dataType, JComponent comboBox)
if (dataType.isAssignableFrom(Date.class) || dataType.isAssignableFrom(Calendar.class)) {
AbstractComboBox button = null;
button = new DateComboBox() {
public AbstractButton createButtonComponent() {
JButton dateButton = new JButton(IconsFactory.getImageIcon(ValueEditor.class, "icons/date.png"));
dateButton.setMargin(new Insets(3, 3, 3, 3));
return dateButton;
}
};
button.setButtonOnly(true);
button.addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent e) {
if (e.getStateChange() == ItemEvent.SELECTED) {
Object selectedDate = e.getItem();
if (selectedDate instanceof Calendar && dataType.isAssignableFrom(Date.class)) {
comboBox.setSelectedItem(((Calendar) selectedDate).getTime());
}
else if (dataType.isAssignableFrom(Calendar.class)) {
comboBox.setSelectedItem(selectedDate);
}
}
}
});
panel.add(button, BorderLayout.AFTER_LINE_ENDS);
}
panel
- the panel.dataType
- the data type.comboBox
- the AbstractComboBox. This is either a ListComboBox or a CheckBoxListComboBox.protected DateComboBox createDateComboBoxButton()
public boolean isLabelVisible()
public void setLabelVisible(boolean labelVisible)
labelVisible
- the flagpublic Object getValue()
public void setValue(Object value)
value
- the valuepublic String getValueInString()
protected String getResourceString(String key)
key
- the resource key
public void setEnabled(boolean enabled)
setEnabled
in class JComponent
|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |