User 818520b6b8
13-12-2005 14:03:39
Hi,
I just upgraded my application from JChem 3.0.9 to 3.1.3, and found that it's not working properly.
One of the odd things I found is that the viewer property "mols0" has just disappeared !!!
I had a piece of java code that detected if the molecule has been changed from the previous one, and then performed some actions. But now, the property name is "ancestor" instead of "mols0", and what is worse, it is fired on different situations than the other one.
Following is the code which is not working now:
private void viewer_propertyChange(PropertyChangeEvent e)
{
String name = e.getPropertyName();
if(name.equals("mols0"))
{
// do something
}
}
Any solutions for this problem?
Thanks.
I just upgraded my application from JChem 3.0.9 to 3.1.3, and found that it's not working properly.
One of the odd things I found is that the viewer property "mols0" has just disappeared !!!
I had a piece of java code that detected if the molecule has been changed from the previous one, and then performed some actions. But now, the property name is "ancestor" instead of "mols0", and what is worse, it is fired on different situations than the other one.
Following is the code which is not working now:
private void viewer_propertyChange(PropertyChangeEvent e)
{
String name = e.getPropertyName();
if(name.equals("mols0"))
{
// do something
}
}
Any solutions for this problem?
Thanks.