org.jgraph.graph.GraphCell 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!
/*
* @(#)GraphCell.java 1.0 03-JUL-04
*
* Copyright (c) 2001-2004 Gaudenz Alder
*
*/
package org.jgraph.graph;
import java.util.Map;
/**
* Defines the requirements for objects that appear as
* GraphCells. This is the base interface for all GraphCells.
*
* @version 1.0 1/1/02
* @author Gaudenz Alder
*/
public interface GraphCell {
/**
* Returns the attributes
of the cell.
*/
AttributeMap getAttributes();
/**
* Changes the attributes
of the cell.
*
* @deprecated Use getAttributes().applyMap
*/
Map changeAttributes(Map change);
/**
* Sets the attributes
*/
public void setAttributes(AttributeMap map);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy