We are using javassist to build hundreeds of classes in the following way :
abstract class A {
| protected int getValue(){
| }
| }
|
| abstract class ANumerique extends A {
| protected abstract int evaluer();
| }
|
| class B1 extends ANumerique {
| protected int evaluer(){
| return getValue();
| }
| }
The more we are creating classes like class B (B2, B3...), the worst is the
compilation elapsed time.
Can Somebody help ?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3981249#3981249
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3981249
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user