All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.el.ExpressionFactory Maven / Gradle / Ivy

Go to download

This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

There is a newer version: 1.8.0
Show newest version
package javax.el;

public abstract class ExpressionFactory {

    public abstract ValueExpression createValueExpression(ELContext context,
                                                          java.lang.String expression,
                                                          java.lang.Class expectedType);

    public abstract ValueExpression createValueExpression(java.lang.Object instance,
                                                          java.lang.Class expectedType);

    public abstract MethodExpression createMethodExpression(ELContext context,
                                                            java.lang.String expression,
                                                            java.lang.Class expectedReturnType,
                                                            java.lang.Class[] expectedParamTypes);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy