/* * @(#)GraphModelListener.java 1.0 03-JUL-04 * * Copyright (c) 2001-2005 Gaudenz Alder * * See LICENSE file in distribution for licensing details of this source file */ package org.jgraph.event; import java.util.EventListener; /** * Defines the interface for an object that listens to changes in a GraphModel. * * @author Gaudenz Alder * @version 1.0 1/1/02 */ @SuppressWarnings ( "all" ) public interface GraphLayoutCacheListener extends EventListener { /** * Invoked after a cell has changed in some way. The vertex/vertices may * have changed bounds or altered adjacency, or other attributes have * changed that may affect presentation. */ void graphLayoutCacheChanged(GraphLayoutCacheEvent e); }