blob: 6cff52f7f05a9d8a50c254d869fccbf83e66a986 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2020 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Robert Bosch GmbH - initial API and implementation
********************************************************************************
*/
package org.eclipse.app4mc.amlt2systemc.m2t.module;
public class PropertyKeys {
// Suppress default constructor
private PropertyKeys() {
throw new IllegalStateException("Utility class");
}
public static final String INPUT_MODELS_FOLDER = "input_models_folder";
public static final String M2M_OUTPUT_FOLDER = "m2m_output_folder";
public static final String M2T_OUTPUT_FOLDER = "m2t_output_folder";
public static final String APP4MCSIM_FOLDER = "app4mcsim_folder";
public static final String LOG_FILE = "logFile";
public static final String PROJECT_NAME = "project_name";
}