blob: a7098e47650e9b67acb642e42ce1a3b66d41ef11 [file] [log] [blame]
// IntegerSequenceModifier.java
package org.eclipse.stem.core.modifier;
/*******************************************************************************
* Copyright (c) 2008 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.emf.common.util.EList;
/**
* A {@link IntegerSequenceModifier} modifies a feature by setting it to a
* sequence of "integer" values.
*
* @model
*/
public interface IntegerSequenceModifier extends SequenceModifier {
/**
* @model
*/
EList<Integer> getSequence();
} // IntegerSequenceModifier