List of usage examples for javax.swing.event ChangeListener interface-usage
From source file components.SliderDemo.java
public class SliderDemo extends JPanel implements ActionListener, WindowListener, ChangeListener { //Set up animation parameters. static final int FPS_MIN = 0; static final int FPS_MAX = 30; static final int FPS_INIT = 15; //initial frames per second int frameNumber = 0;
From source file components.SliderDemo2.java
public class SliderDemo2 extends JPanel implements ActionListener, WindowListener, ChangeListener { //Set up animation parameters. static final int FPS_MIN = 0; static final int FPS_MAX = 30; static final int FPS_INIT = 15; //initial frames per second int frameNumber = 0;
From source file components.ConversionPanel.java
public class ConversionPanel extends JPanel implements ActionListener, ChangeListener, PropertyChangeListener {
JFormattedTextField textField;
JComboBox unitChooser;
JSlider slider;
ConverterRangeModel sliderModel;
Converter controller;
From source file org.executequery.gui.editor.LobDataItemViewerPanel.java
public class LobDataItemViewerPanel extends DefaultActionButtonsPanel implements ChangeListener { private static final String CANNOT_DISPLAY_BINARY_DATA_AS_TEXT = "\n Cannot display binary data as text"; private JTextArea textArea;
From source file org.lockss.devtools.plugindef.EDPInspectorTableModel.java
public class EDPInspectorTableModel extends AbstractTableModel implements ChangeListener { static EDPInspectorCellEditor inspectorCellEditor = new EDPInspectorCellEditor(); static JComboBox crawlTypeBox = new JComboBox(new String[] { "HTML Links", "OAI" });
From source file GrayModel.java
class GrayEditor extends JLabel implements ChangeListener { public GrayEditor(JSpinner spinner) { setOpaque(true); // Get info from the model. GrayModel myModel = (GrayModel) (spinner.getModel());
From source file GrayModel.java
class GrayEditor extends JLabel implements ChangeListener { public GrayEditor(JSpinner spinner) { setOpaque(true); // Get info from the model. GrayModel myModel = (GrayModel) (spinner.getModel());
From source file pcgen.gui2.CharacterTabs.java
/**
* This is the tabbed pane for PCGen characters. Unlike normal tabbed panes, the
* CharacterTabs pane really only has a component single child component, the
* InfoTabbedPane. The CharacterTabs pane is responsible for notifying both the
* PCGenFrame and the InfoTabbedPane when a change in character selection
* occurs.
From source file org.lmn.fc.frameworks.starbase.plugins.observatory.ui.tabs.ChartUIComponentPlugin.java
/************************************************************************************************** * ChartUIComponentPlugin. */ public interface ChartUIComponentPlugin extends UIComponentPlugin, ChangeListener { // String Resources
From source file org.paxle.desktop.impl.event.MultipleChangesListener.java
public class MultipleChangesListener implements ChangeListener, ActionListener, ListSelectionListener, OptionChangeListener, DocumentListener { private static final long serialVersionUID = 1L; private static final Class<?>[] CLASSES;