blob: f3de93cb2ccfaf3957cf12f23338be7b73e2ed62 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.pattern.jet;
/**
* @author Matthieu Helleboid
*
*/
public interface JetTagsConstants {
public static final String EGF_PATTERN_CALL = "egf:patternCall"; //$NON-NLS-1$
public static final String EGF_PATTERN_INJECTED_CALL = "egf:patternInjectedCall"; //$NON-NLS-1$
public static final String MATCH_SEPARATOR = ":"; //$NON-NLS-1$
public static final String ARGS_SEPARATOR = ","; //$NON-NLS-1$
public static final String TO_INJECT = "toInject"; //$NON-NLS-1$
public static final String ARGS = "args"; //$NON-NLS-1$
public static final String PATTERN_ID = "patternId"; //$NON-NLS-1$
public static final String LOGICAL_NAME = "LogicalName"; //$NON-NLS-1$
}