blob: 02f4598c03fad6af329d7bf3cef7cb22c3398b44 [file] [log] [blame]
/*
* <copyright>
*
* Copyright (c) 2005-2006 Sven Efftinge 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:
* Sven Efftinge - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.gmf.internal.xpand.expression;
/**
* @author Sven Efftinge
* @author Arno Haase
* @author Markus Voelter
*/
public interface SyntaxConstants {
public final static String NS_DELIM = "::";
public static final String COLLECT = "collect";
public static final String SELECT = "select";
public static final String REJECT = "reject";
public static final String EXISTS = "exists";
public static final String NOT_EXISTS = "notExists";
public static final String FOR_ALL = "forAll";
public static final String DEFAULT_ELE_NAME = "element";
public static final String TYPE_SELECT = "typeSelect";
}