Skip to main content
summaryrefslogtreecommitdiffstats
blob: f933a87bf7e2085b0c4a2318f8dde7715842b789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*******************************************************************************
 * Copyright (c) 2009 - 2010 Cloudsmith Inc. 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:
 *     Cloudsmith Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.p2.metadata.expression;

/**
 * A parser that produces an expression tree based on a string representation. An
 * implementation will use the {@link IExpressionFactory} to create the actual expressions
 */
public interface IExpressionParser {
	/**
	 * Create a new expression. The expression will have access to the global
	 * variable and to the context parameters.
	 * @param exprString The string representing the boolean expression.
	 * @return The resulting expression tree.
	 */
	IExpression parse(String exprString);
}

Back to the top