blob: b8646ad03bed1b3590b10c874ef62f97490a784a [file] [log] [blame]
// STEMTimeSequenceModifier.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;
import org.eclipse.stem.core.model.STEMTime;
/**
* A {@link STEMTimeSequenceModifier} modifies a feature by setting it to a
* sequence of "STEMTime" values.
*
* @model
*/
public interface STEMTimeSequenceModifier extends SequenceModifier {
/**
* @model
*/
EList<STEMTime> getSequence();
} // STEMTimeSequenceModifier