blob: 3c310f8174609e0109bfe11402acb7710f0003ae [file] [log] [blame]
/*
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 change
* 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>GraphicsNodeChangeEvent</code>
* listener and override the methods for the events of interest. (If
* you implement the <code>GraphicsNodeChangeListener</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:deweese@apache.org">Thomas DeWeese</a>
* @version $Id$
*/
public abstract class GraphicsNodeChangeAdapter
implements GraphicsNodeChangeListener {
/**
* Invoked when a change has started on a graphics node, but before
* any changes occure in the graphics node it's self.
* @param gnce the graphics node change event
*/
public void changeStarted(GraphicsNodeChangeEvent gnce) { }
/**
* Invoked when a change on a graphics node has completed
* @param gnce the graphics node change event
*/
public void changeCompleted(GraphicsNodeChangeEvent gnce) { }
}