package agg.parser; /** * This class provides basic access to layered objects. These layer are * implemented in several classes. * * @deprecated * @author $Author: olga $ * @version $Id: Layer.java,v 1.2 2007/09/10 13:05:41 olga Exp $ */ public interface Layer { /** * Sets a layer function to layer a certain object. * * @param layer * A specific layer function. */ public void setLayer(LayerFunction layer); /** * Returns a layer function from a certain object. * * @return A specific layer function. */ public LayerFunction getLayer(); } /* * $Log: Layer.java,v $ * Revision 1.2 2007/09/10 13:05:41 olga * In this update: * - package xerces2.5.0 is not used anymore; * - class com.objectspace.jgl.Pair is replaced by the agg own generic class agg.util.Pair; * - bugs fixed in: usage of PACs in rules; match completion; * usage of static method calls in attr. conditions * - graph editing: added some new features * Revision 1.1 2005/08/25 11:56:58 enrico *** empty log * message *** * * Revision 1.1 2005/05/30 12:58:03 olga Version with Eclipse * * Revision 1.1.1.1 2002/07/11 12:17:23 olga Imported sources * * Revision 1.2 2001/03/08 10:44:51 olga Neue Files aus parser branch in Head * eingefuegt. * * Revision 1.1.2.2 2001/01/28 13:14:54 shultzke API fertig * * Revision 1.1.2.1 2000/12/10 14:55:48 shultzke um Layer erweitert * */