Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.

Commit

Permalink
#899 added runner plugin to build
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasmuelder committed Aug 12, 2016
1 parent bbb7f57 commit 9143421
Showing 1 changed file with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/**
* Copyright (c) 2016 committers of YAKINDU 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:
* committers of YAKINDU - initial API and implementation
*/
package org.yakindu.sct.generator.core.library;

/**
*
* @author andreas muelder - Initial contribution and API
*
*/
public interface ICoreLibraryConstants {

String LIBRARY_NAME = "Core";
String OUTLET_FEATURE = "Outlet";
String OUTLET_FEATURE_TARGET_PROJECT = "targetProject";
String OUTLET_FEATURE_TARGET_FOLDER = "targetFolder";
String OUTLET_FEATURE_LIBRARY_TARGET_FOLDER = "libraryTargetFolder";
String OUTLET_FEATURE_API_TARGET_FOLDER = "apiTargetFolder";
String LICENSE_HEADER = "LicenseHeader";
String LICENSE_TEXT = "licenseText";

String DEBUG_FEATURE = "Debug";
String DEBUG_FEATURE_DUMP_SEXEC = "dumpSexec";

String FUNCTION_INLINING_FEATURE = "FunctionInlining";
String FUNCTION_INLINING_FEATURE_INLINE_REACTIONS = "inlineReactions";
String FUNCTION_INLINING_FEATURE_INLINE_ENTRY_ACTIONS = "inlineEntryActions";
String FUNCTION_INLINING_FEATURE_INLINE_ENTER_SEQUENCES = "inlineEnterSequences";
String FUNCTION_INLINING_FEATURE_INLINE_EXIT_ACTIONS = "inlineExitActions";
String FUNCTION_INLINING_FEATURE_INLINE_EXIT_SEQUENCES = "inlineExitSequences";
String FUNCTION_INLINING_FEATURE_INLINE_CHOICES = "inlineChoices";
String FUNCTION_INLINING_FEATURE_INLINE_ENTRIES = "inlineEntries";
String FUNCTION_INLINING_FEATURE_INLINE_ENTER_REGION = "inlineEnterRegion";
String FUNCTION_INLINING_FEATURE_INLINE_EXIT_REGION = "inlineExitRegion";

}

0 comments on commit 9143421

Please sign in to comment.