blob: 673a6a2c8e5b00a765a85af05224915f98f6d251 [file] [log] [blame]
// NodeDecorator.java
package org.eclipse.stem.core.model;
/*******************************************************************************
* 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>GraphDecorator</code> is a {@link Decorator} that specifically
* modifies {@link org.eclipse.stem.core.graph.Edge}s and their
* {@link org.eclipse.stem.core.graph.Label}s.
*
* @see org.eclipse.stem.core.graph.Node
* @see org.eclipse.stem.core.graph.DynamicLabel
* @see EdgeDecorator
* @see GraphDecorator
* @see org.eclipse.stem.core.sequencer.Sequencer
*
* @model
*/
public interface NodeDecorator extends Decorator {
// Nothing yet
} // NodeDecorator