SMouseAdapter.java :  » Swing-Library » wings3 » org » wings » event » Java Open Source

Java Open Source » Swing Library » wings3 
wings3 » org » wings » event » SMouseAdapter.java
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 {
    public void mouseClicked(SMouseEvent e) {}
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.