mirror of
https://github.com/github/codeql.git
synced 2026-08-04 17:33:18 +02:00
14 lines
272 B
Java
Generated
14 lines
272 B
Java
Generated
package ognl.enhance;
|
|
|
|
import ognl.Node;
|
|
import ognl.OgnlContext;
|
|
|
|
public interface ExpressionAccessor
|
|
{
|
|
Object get( OgnlContext context, Object target );
|
|
|
|
void set( OgnlContext context, Object target, Object value );
|
|
|
|
void setExpression( Node expression );
|
|
}
|