Package org.springframework.binding.expression.support

Examples of org.springframework.binding.expression.support.StaticExpression


    assertSame(bean, methodInvoker.invoke(method, new TestObject(), null));
  }

  public void testPrimitiveArg() {
    Parameters parameters = new Parameters();
    parameters.add(new Parameter(Boolean.class, new StaticExpression(true)));
    MethodSignature method = new MethodSignature("testPrimitiveArg", parameters);
    assertEquals(Boolean.TRUE, methodInvoker.invoke(method, new TestObject(), null));
  }
View Full Code Here

TOP

Related Classes of org.springframework.binding.expression.support.StaticExpression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.