blob: b7fb599a475852da1a7174505bdf1b12ce1675a5 [file] [log] [blame]
// TestDynamicLabel1.java
package org.eclipse.stem.tests.util.labels;
/*******************************************************************************
* 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.graph.DynamicLabel;
/**
* This interface represents the model of an abstract class in an EMF model that
* is an example of a DynamicLabel implementation used for test purposes.
*
* @see TestIntegerLabelValue
*
* @model
*/
public interface TestDynamicLabel1 extends DynamicLabel {
/**
* Make the next value be one more than the current value.
*
* @model volatile="true" transient="true" changeable="false"
*/
void increment();
} // TestDynamicLabel1