blob: 5fab91d6c748708763e46fcec817dd4cb1688cfd [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.fmu.json;
import java.util.ArrayList;
public class JSONRequest {
public static final String INIT = "ini";
public static final String TERMINATE = "ter";
public static final String STEP_TIME = "t";
public static final String STEP_SIZE = "h";
public static final String INT_VRS = "iv";
public static final String INTS = "i";
public static final String DOUBLE_VRS = "dv";
public static final String DOUBLES = "d";
public static final String BOOL_VRS = "bv";
public static final String BOOLS = "b";
public static final String STRING_VRS = "sv";
public static final String STRINGS = "s";
public boolean init;
public boolean terminate;
public double t;
public double h;
public ArrayList<Integer> intVRs=new ArrayList<Integer> ();
public ArrayList<Integer> ints = new ArrayList<Integer> ();
public ArrayList<Integer> doubleVRs=new ArrayList<Integer> ();
public ArrayList<Double> doubles=new ArrayList<Double>();
public ArrayList<Integer> boolVRs=new ArrayList<Integer> ();
public ArrayList<Boolean> bools=new ArrayList<Boolean>();
public ArrayList<Integer> stringVRs=new ArrayList<Integer> ();
public ArrayList<String> strings=new ArrayList<String> ();
}