blob: c4509161b79ae71e0f7e71b870a14998c59e6c24 [file] [log] [blame]
// TestNodeDecorator1.java
package org.eclipse.stem.tests.util.decorators;
/*******************************************************************************
* 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
*******************************************************************************/
import org.eclipse.stem.core.model.NodeDecorator;
/**
* This interface represents the model of an abstract class in an EMF model that
* is an example of a NodeDecorator implementation used for test purposes.
*
* @model
*/
public interface TestNodeDecorator1 extends NodeDecorator {
// Nothing
} // TestNodeDecorator1