Package com.denimgroup.threadfix.data.entities

Examples of com.denimgroup.threadfix.data.entities.SurveySection


    return level;
  }

  private SurveySection constructSection(Element sectionElement) {
    SurveySection section = new SurveySection();
    section.setSectionName(sectionElement.attributeValue("name"));
    section.setColor(sectionElement.attributeValue("color"));
    section.setLightColor(sectionElement.attributeValue("lightColor"));

    for (Object practiceElement : sectionElement.elements("practice")) {
      section.getSurveyPractices().add(constructPractice((Element) practiceElement));
    }

    for (SurveyPractice practice : section.getSurveyPractices()) {
      practice.setSurveySection(section);
    }

    return section;
  }
View Full Code Here

TOP

Related Classes of com.denimgroup.threadfix.data.entities.SurveySection

Copyright © 2018 www.massapicom. 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.