[JBoss-user] [Javassist user questions] - Re: dispatch algorithm limitation

2004-11-03 Thread tar
Thanks! I think you should include those few lines into the tutorial. It may help users. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3853719#3853719 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3853719 --

[JBoss-user] [Javassist user questions] - Re: use n times a class created

2004-10-27 Thread tar
First, are you sure that you need to re construct a new class each time ? Your code seems always do the same things... In absolute you cannot load two class with the same name (1). Try to use different class name each time you create and execute your class. hope this can help (1) article about

[JBoss-user] [Javassist user questions] - Re: dispatch algorithm limitation

2004-10-27 Thread tar
Sorry the layout may be a little confussing... here is the right layout. We can read this at the end of the tutorial : anonymous wrote : The compiler does not correctly implement the Java method dispatch algorithm. The compiler may confuse if methods defined in a class have the same name but t

[JBoss-user] [Javassist user questions] - dispatch algorithm limitation

2004-10-27 Thread tar
We can read this at the end of the tutorial : anonymous wrote : The compiler does not correctly implement the Java method dispatch algorithm. The compiler may confuse if methods defined in a class have the same name but take different parameter lists.anonymous wrote : | | | | what it re