public synchronized boolean buildStructure(final IProgressMonitor pm)
throws ErlModelException {
if (internalBuildStructure(pm)) {
final IErlModel model = ErlangEngine.getInstance().getModel();
if (model != null) {
model.notifyChange(this);
}
return true;
}
return false;
}