src/benchmarks/java/org/apache/commons/ognl/performance/runtime/CommonsRuntimeWrapper.java [34:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    implements RuntimeWrapper
{


    public void getFields( Class<?> c )
        throws Exception
    {
        OgnlRuntime.getFields( c );
    }


    public void findParameterTypes( Class<?> targetClass, Method method )
        throws Exception
    {
        OgnlRuntime.findParameterTypes( targetClass, method );
    }


    public void getConstructors( Class<?> c )
        throws Exception
    {
        OgnlRuntime.getConstructors( c );
    }


    public void getMethods( Class<?> c, boolean staticMethods )
        throws Exception
    {
        OgnlRuntime.getMethods( c, staticMethods );
    }


    public void getDeclaredMethods( Class<?> c, String propertyName, boolean setters )
        throws Exception
    {
        OgnlRuntime.getDeclaredMethods( c, propertyName, setters );
    }


    public void getParameterTypes( Method method )
        throws Exception
    {
        OgnlRuntime.getParameterTypes( method );
    }


    public void getParameterTypes( Constructor<?> constructor )
        throws Exception
    {
        OgnlRuntime.getParameterTypes( constructor );
    }


    public void getPermission( Method method )
        throws Exception
    {
        OgnlRuntime.getPermission( method );
    }


    public void getPrimitiveDefaultValue( Class<?> type )
        throws Exception
    {
        OgnlRuntime.getPrimitiveDefaultValue( type );
    }


    public void invokeMethod( Object o, Method method, Object[] args )
        throws Exception
    {
        OgnlRuntime.invokeMethod( o, method, args );
    }


    public void clearCache()
    {
        OgnlRuntime.clearCache();
    }

    public void getCompiler()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/benchmarks/java/org/apache/commons/ognl/performance/runtime/OldOgnlRuntimeWrapper.java [34:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    implements RuntimeWrapper
{

    public void getFields( Class<?> c )
        throws Exception
    {
        OgnlRuntime.getFields( c );
    }


    public void findParameterTypes( Class<?> targetClass, Method method )
        throws Exception
    {
        OgnlRuntime.findParameterTypes( targetClass, method );
    }


    public void getConstructors( Class<?> c )
        throws Exception
    {
        OgnlRuntime.getConstructors( c );
    }


    public void getMethods( Class<?> c, boolean staticMethods )
        throws Exception
    {
        OgnlRuntime.getMethods( c, staticMethods );
    }


    public void getDeclaredMethods( Class<?> c, String propertyName, boolean setters )
        throws Exception
    {
        OgnlRuntime.getDeclaredMethods( c, propertyName, setters );
    }


    public void getParameterTypes( Method method )
        throws Exception
    {
        OgnlRuntime.getParameterTypes( method );
    }


    public void getParameterTypes( Constructor<?> constructor )
        throws Exception
    {
        OgnlRuntime.getParameterTypes( constructor );
    }


    public void getPermission( Method method )
        throws Exception
    {
        OgnlRuntime.getPermission( method );
    }


    public void getPrimitiveDefaultValue( Class<?> type )
        throws Exception
    {
        OgnlRuntime.getPrimitiveDefaultValue( type );
    }


    public void invokeMethod( Object o, Method method, Object[] args )
        throws Exception
    {
        OgnlRuntime.invokeMethod( o, method, args );
    }


    public void clearCache()
    {
        OgnlRuntime.clearCache();
    }

    public void getCompiler()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



