/**Call this to notify all project listeners that the current project or
* it's state has changed*/
void fireProjectChange(final int type) {
for (final Iterator<ProjectListener> i = projectListeners.iterator();i.hasNext();) {
final ProjectListener pl = i.next();
pl.projectStateChanged(project, type);
}
}