blob: 82637ee1bf2caee5d24ae8226150abef5733b858 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST.
*
* 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:
* CEA LIST Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.moka.fmi.master.fmilibrary;
public interface Fmi2VariabilityType {
public static final String fmi2Constant = "constant";
public static final String fmi2Fixed = "fixed";
public static final String fmi2Tunable = "tunable";
public static final String fmi2Discrete = "discrete";
public static final String fmi2Continuous = "continuous";
}