Ejemplo n.º 1
0
 /// <summary>
 /// Initializes collections
 /// </summary>
 private void InitCollections()
 {
     addMessageBackgroundWorker(0, "Init import...");
     Phases         = new UMLPhaseCollection();
     Iterations     = new UMLIterationCollection();
     Files          = new UMLFileCollection();
     UseCases       = new UMLUseCaseCollection();
     Collaborations = new UMLCollaborationCollection();
     Packages       = new UMLPackageCollection();
 }
Ejemplo n.º 2
0
        public void LoadCollections()
        {
            _factors  = getFactors();
            _useCases = getUseCases();

            if (_prev == null)
            {
                _prev = Helper.GetPrev <UMLIteration>(this, Constants.UMLIteration.STEREOTYPEITERATIONPRECEDENCE);
            }
            if (_next == null)
            {
                _next = Helper.GetNext <UMLIteration>(this, Constants.UMLIteration.STEREOTYPEITERATIONPRECEDENCE);
            }
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes collections
 /// </summary>
 private void InitCollections()
 {
     addMessageBackgroundWorker(0, "Init import...");
     Phases = new UMLPhaseCollection();
     Iterations = new UMLIterationCollection();
     Files = new UMLFileCollection();
     UseCases = new UMLUseCaseCollection();
     Collaborations = new UMLCollaborationCollection();
     Packages= new UMLPackageCollection();
 }