blob: c5c73617e7b974c00dcac95dbf22c0fbaa16b0af [file] [log] [blame]
package org.eclipse.jst.jsf.common.runtime.internal.model.datatypes;
/**
* An abstraction for an EL expression.
*
* @author cbateman
*
*/
public abstract class ELExpression
{
/**
* @return the original text of EL expression
*/
public abstract String getText();
}