示例#1
0
        private UMLFactorCollection getFactors()
        {
            UMLFactorCollection result = UMLFactorCollection.GetFactors(false);

            foreach (UMLFactor factor in result)
            {
                factor.SetSelected(GetTagValueAsString(Constants.UMLProfile.ESTIMATION, Constants.UMLIteration.TDS_FATORS, factor.DefinitionName));
            }
            return(result);
        }
示例#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);
            }
        }