I have just tried out a similar test case like yours but still can't reproduce.
Can you use load-time instrumentation option to see if the problem is there as
well?
Here is the test case:
| public void testLoadingClass()
| {
| Address addr = new Address();
| addr.getClass().getName();
| }
|
Here is Address class that is under JBossCache testsuite.
| package org.jboss.cache.aop.test;
|
| /**
| * @@org.jboss.cache.aop.AopMarker
| */
| public class Address
| {
| String street = null;
| String city = null;
| int zip = 0;
|
| public String getStreet()
| {
| return street;
| }
|
| public void setStreet(String street)
| {
| this.street = street;
| }
|
| public String getCity()
| {
| return city;
| }
|
| public void setCity(String city)
| {
| this.city = city;
| }
|
| public int getZip()
| {
| return zip;
| }
|
| public void setZip(int zip)
| {
| this.zip = zip;
| }
|
| public String toString()
| {
| return "street=" + getStreet() + ", city=" + getCity() + ", zip=" +
getZip();
| }
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949908#3949908
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3949908
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user