com.feilong.lib.ognl.JavaSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feilong Show documentation
Show all versions of feilong Show documentation
feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.
/**
*
*/
package com.feilong.lib.ognl;
import com.feilong.lib.ognl.enhance.ExpressionAccessor;
/**
* Defines an object that can return a representation of itself and any objects it contains
* in the form of a {@link String} embedded with literal java statements.
*
* @author jkuhnert
*/
public interface JavaSource{
/**
* Expected to return a java source representation of itself such that
* it could be turned into a literal java expression to be compiled and
* executed for {@link ExpressionAccessor#get(OgnlContext, Object)} calls.
*
* @param context
* the OgnlContext within which to perform the operation.
* @param target
* the Object from which to retrieve the get source string.
* @return Literal java string representation of an object get.
*/
String toGetSourceString(OgnlContext context,Object target);
/**
* Expected to return a java source representation of itself such that
* it could be turned into a literal java expression to be compiled and
* executed for {@link ExpressionAccessor#get(OgnlContext, Object)} calls.
*
* @param context
* the OgnlContext within which to perform the operation.
* @param target
* the Object from which to retrieve the set source string.
* @return Literal java string representation of an object set.
*/
String toSetSourceString(OgnlContext context,Object target);
}