Ejemplo n.º 1
0
        /// <summary>
        /// Main Method for handling parsed data about existing Methods
        /// </summary>
        /// <param name="methods"> Containing information about the methods </param>
        /// <returns> Datamodel valid List of all Methods for each Class or Interface </returns>
        public List <UML_Method> AnalyzeMethodLabel(string methods)
        {
            BaseReader        readerInstance = new BaseReader(this.filepath);
            List <UML_Method> classMethods   = new List <UML_Method>();

            classMethods = readerInstance.getMethod(methods);
            return(classMethods);
        }