throws Exception
{
long lastModified=Long.parseLong( BBQPathsGroup.updateTimeProperty.
getValue( node));
String classPath=BBQPathsGroup.classPathProperty.getValue( node);
Url classUrl;
if ( classPath.length()==0)
{
classUrl=project.getPaths().getOutPath();
}
else
{
classUrl=new Url( classPath);
}
button.setEnabled( false);
( new UpdateDBThread( classUrl, button, lastModified, node)).start();
}