mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
10 lines
315 B
Java
Generated
10 lines
315 B
Java
Generated
package ognl;
|
|
|
|
import ognl.enhance.ExpressionAccessor;
|
|
|
|
public interface Node extends JavaSource {
|
|
public Object getValue(OgnlContext context, Object source) throws OgnlException;
|
|
public void setValue(OgnlContext context, Object target, Object value) throws OgnlException;
|
|
ExpressionAccessor getAccessor();
|
|
}
|