Package org.openbp.core.model

Examples of org.openbp.core.model.Model.maintainReferences()


      case ModelNotificationService.ADDED:
        // Read the model and repair hiearchy, establish links and instantiate the model
        model = readModelFromStore(qualifier);
        if (model != null)
        {
          model.maintainReferences(ModelObject.RESOLVE_GLOBAL_REFS | ModelObject.RESOLVE_LOCAL_REFS | ModelObject.INSTANTIATE_ITEM);
        }
        break;

      case ModelNotificationService.UPDATED:
        model = getOptionalModelByQualifier(qualifier);
View Full Code Here


    {
      Model model = (Model) it.next();

      // After a model has been read, the links to other objects must be established
      // and the objects instantiated if necessary
      model.maintainReferences(flag);

      // TODO Feature 4 Trigger unit event
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.