blob: 3a856b0cb140622b5f0b46e6241411ee6fcb890b [file] [log] [blame]
// EdgeDecorator.java
package org.eclipse.stem.core.model;
import org.eclipse.stem.core.graph.Edge;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* An <code>EdgeDecorator</code> is a {@link Decorator} that specifically
* modifies {@link Edge}s and their {@link Label}s.
*
* @see Edge
* @see org.eclipse.stem.core.graph.DynamicLabel
* @see NodeDecorator
* @see GraphDecorator
* @see Sequencer
*
* @model
*/
public interface EdgeDecorator extends Decorator {
// Nothing Yet
} // EdgeDecorator