All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.ognl.NodeType Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/**
 * 
 */
package com.feilong.lib.ognl;

/**
 * Used by some of the {@link com.feilong.lib.ognl.enhance.OgnlExpressionCompiler} logic to determine the object
 * type of {@link Node}s during expression evaluation.
 */
public interface NodeType{

    /**
     * The type returned from the expression - if any.
     *
     * @return The type.
     */
    Class getGetterClass();

    /**
     * The type used to set the value - if any.
     *
     * @return The type.
     */
    Class getSetterClass();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy