mirror of
https://github.com/github/codeql.git
synced 2026-08-03 17:03:02 +02: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();
|
|
}
|