blob: 676a4510bb43bf3d318533ba6c37d5df41ab53cd [file] [log] [blame]
// TestDynamicEdgeLabel.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.DynamicEdgeLabel;
/**
* This interface is for testing.
*
* @model
*/
public interface TestDynamicEdgeLabel extends DynamicEdgeLabel {
/**
* Make the next value be one more than the current value.
*
* @model volatile="true" transient="true" changeable="false"
*/
void increment();
} // TestDynamicEdgeLabel