/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.batik.gvt.event;
An abstract adapter class for receiving graphics node mouse
events. The methods in this class are empty. This class exists as
convenience for creating listener objects.
Extend this class to create a GraphicsNodeMouseEvent
listener and override the methods for the events of interest. (If
you implement the GraphicsNodeMouseListener
interface, you
have to define all of the methods in it. This abstract class
defines null methods for them all, so you can only have to define
methods for events you care about.)
Author: Thierry Kormann Version: $Id: GraphicsNodeMouseAdapter.java 1733416 2016-03-03 07:07:13Z gadams $
/**
* An abstract adapter class for receiving graphics node mouse
* events. The methods in this class are empty. This class exists as
* convenience for creating listener objects.
*
* <p>Extend this class to create a <code>GraphicsNodeMouseEvent</code>
* listener and override the methods for the events of interest. (If
* you implement the <code>GraphicsNodeMouseListener</code> interface, you
* have to define all of the methods in it. This abstract class
* defines null methods for them all, so you can only have to define
* methods for events you care about.)
*
* @author <a href="mailto:Thierry.Kormann@sophia.inria.fr">Thierry Kormann</a>
* @version $Id: GraphicsNodeMouseAdapter.java 1733416 2016-03-03 07:07:13Z gadams $
*/
public abstract class GraphicsNodeMouseAdapter
implements GraphicsNodeMouseListener {
public void mouseClicked(GraphicsNodeMouseEvent evt) {}
public void mousePressed(GraphicsNodeMouseEvent evt) {}
public void mouseReleased(GraphicsNodeMouseEvent evt) {}
public void mouseEntered(GraphicsNodeMouseEvent evt) {}
public void mouseExited(GraphicsNodeMouseEvent evt) {}
public void mouseDragged(GraphicsNodeMouseEvent evt) {}
public void mouseMoved(GraphicsNodeMouseEvent evt) {}
}