Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-3
-
None
-
None
Description
public class Test {
public String x = "hello";
public String getX()
{ return "goodby"; }public static void main(String[] args)
{ final Test t1 = new Test(); System.out.println(InvokerHelper.getMetaClass(t1).getAttribute(t1, "x")); System.out.println(InvokerHelper.getMetaClass(t1).getProperty(t1, "x")); }}
prints
hello
hello
it should print
hello
goodby