List of usage examples for javax.swing.event ChangeListener interface-usage
From source file org.openmicroscopy.shoola.agents.imviewer.util.player.MoviePlayerControl.java
/**
* The movie player controller.
*
* @author Jean-Marie Burel
* <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
* @author Andrea Falconi
From source file components.SpinnerDemo3.java
public class SpinnerDemo3 extends JPanel implements ChangeListener { protected Calendar calendar; protected JSpinner dateSpinner; protected Color SPRING_COLOR = new Color(0, 204, 51); protected Color SUMMER_COLOR = Color.RED;
From source file javazoom.jlgui.player.amp.equalizer.ui.EqualizerUI.java
/**
* This class implements an equalizer UI.
* <p/>
* The equalizer consists of 32 band-pass filters.
* Each band of the equalizer can take on a fractional value between
* -1.0 and +1.0.
From source file it.unibo.alchemist.boundary.gui.Perspective.java
/** * @param <T> */ public class Perspective<T> extends JPanel implements ChangeListener, ActionListener { private static final long serialVersionUID = -6074331788924400019L;
From source file org.jcurl.core.impl.CurveManager.java
/**
* Bring it all together and trigger computation.
* <p>
* Registers itself as listener to
* {@link RockSet#addRockListener(ChangeListener)} for both - initial rock
* locations and velocities to trigger recomputation.
From source file net.sf.maltcms.chromaui.ui.PaintScalePanel.java
/** * * @author nilshoffmann */ public class PaintScalePanel extends javax.swing.JPanel implements ChangeListener {
From source file MainClass.java
class MyChangeListener implements ChangeListener { public void stateChanged(ChangeEvent e) { System.out.println("A ChangeEvent has been fired!"); } }
From source file WeatherWizard.java
public class WeatherWizard extends JApplet implements ChangeListener { WeatherPainter painter; public void init() { /* Turn off metal's use of bold fonts */
From source file org.jfree.demo.DrawStringDemo.java
/** * A demo of some of the string drawing methods in the JCommon class library. */ public class DrawStringDemo extends ApplicationFrame implements ActionListener, ChangeListener { /** The alignment anchor for the first panel. */
From source file edu.ku.brc.af.ui.forms.validation.DataChangeNotifier.java
/**
* Implements several listener interfaces and listens for the various types of notifications
* to figure out if the component has changed.
*
* @code_status Complete
*