Class ColorWheelPanel.ColorDocumentListener
- java.lang.Object
-
- org.pushingpixels.radiance.theming.internal.contrib.xoetrope.editor.color.ColorWheelPanel.ColorDocumentListener
-
- All Implemented Interfaces:
java.util.EventListener
,javax.swing.event.DocumentListener
- Enclosing class:
- ColorWheelPanel
private class ColorWheelPanel.ColorDocumentListener extends java.lang.Object implements javax.swing.event.DocumentListener
-
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String
MARKER
private javax.swing.JTextField
originator
-
Constructor Summary
Constructors Constructor Description ColorDocumentListener(javax.swing.JTextField originator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
changedUpdate(javax.swing.event.DocumentEvent evt)
This method is called after one or more attributes have changed.void
insertUpdate(javax.swing.event.DocumentEvent evt)
This method is called after an insert into the documentvoid
removeUpdate(javax.swing.event.DocumentEvent evt)
This method is called after a removal from the documentvoid
synchronize(javax.swing.event.DocumentEvent evt)
-
-
-
Field Detail
-
originator
private javax.swing.JTextField originator
-
MARKER
private static final java.lang.String MARKER
- See Also:
- Constant Field Values
-
-
Method Detail
-
insertUpdate
public void insertUpdate(javax.swing.event.DocumentEvent evt)
This method is called after an insert into the document- Specified by:
insertUpdate
in interfacejavax.swing.event.DocumentListener
-
removeUpdate
public void removeUpdate(javax.swing.event.DocumentEvent evt)
This method is called after a removal from the document- Specified by:
removeUpdate
in interfacejavax.swing.event.DocumentListener
-
changedUpdate
public void changedUpdate(javax.swing.event.DocumentEvent evt)
This method is called after one or more attributes have changed. This method is not called when characters are inserted with attributes.- Specified by:
changedUpdate
in interfacejavax.swing.event.DocumentListener
-
synchronize
public void synchronize(javax.swing.event.DocumentEvent evt)
-
-