mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01: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 );
|
|
}
|