blob: 585f458f0f77f65d7e705f9d6633ff29b1a305f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 ILOG 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:
* Joel Cheuoua - Initial API and implementation
*******************************************************************************/
package org.eclipse.jet.internal.editor.rules;
import org.eclipse.jface.text.rules.*;
public class JETJavaExpressionRule extends MultiLineRule {
public JETJavaExpressionRule(IToken token) {
super("<%=", "%>", token, '\\');
}
}