org.jgraph.graph.CellViewFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ingeniasjgraphmod Show documentation
Show all versions of ingeniasjgraphmod Show documentation
A modified version of some JGraph files
The newest version!
/*
* @(#)CellViewFactory.java 1.0 03-JUL-04
*
* Copyright (c) 2001-2004 Gaudenz Alder
*
*/
package org.jgraph.graph;
/**
* Defines the requirements for objects that may be used as a
* cell view factory.
*
* @version 1.0 1/1/02
* @author Gaudenz Alder
*/
public interface CellViewFactory {
/**
* Constructs a view for the specified cell and associates it
* with the specified object using the specified CellMapper.
*
* @param cell reference to the object in the model
*/
CellView createView(GraphModel model, Object cell);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy