[jboss-user] [Javassist user questions] - Javassist compilation problem

gregoire.lochard@free.fr do-not-reply at jboss.com
Fri Oct 27 04:48:16 EDT 2006


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



More information about the jboss-user mailing list