All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wings.event.SMouseAdapter Maven / Gradle / Ivy

The newest version!
package org.wings.event;

/**
 * An abstract adapter class for receiving mouse events. The methods in this class are empty. This class exists as
 * convenience for creating listener objects.
 *
 * If you derive from SMouseAdapter, your class stays compilable, if we decide
 * to add new methods to the SMouseListener interface.
 *
 * @author hengels
 */
public abstract class SMouseAdapter implements SMouseListener {
    @Override
    public void mouseClicked(SMouseEvent e) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy