Logged In: YES
user_id=145190

Thanks for the report,

I am aware of the first problem, and it's due to how a class
loader work in JVM. Basically, you cannot un-load the class
file which is loaded in the JVM. Technically, there are few
things we can do:

1) Use Java Debug Interface, which allow you to unload a
class. However, this function is only available on a
certain JVM. Therefore, supporting this would break the
platform independency.

2) Or, I have have a separate classloader for each bean
loaded. However, this would put a significant overhead and
class file management issue.

In the past, I've discussed this with Sun's JavaBean people,
but we could not find a good solution.

For the second behavior, I'll try to fix it ASAP.

In regards to JBeanStudio's source code, I now maintain the
sourcecode using Subversion, which is not supported by
SourceForge.

Thanks,
Masa