blob: c66b54cf30a3c0ca7d1dcd33984e659141defa7e [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* 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$
}