Package gov.nist.scap.xccdf.document

Examples of gov.nist.scap.xccdf.document.SelectableItem


      List<String> idrefs = idrefList.getIdref();

      DefaultRequires requires = new DefaultRequires();
      boolean found = false;
      for (String id : idrefs) {
        SelectableItem item = getDocument().lookupSelectableItem(id);
        if (item == null) {
          log.error("required item '"+id+"' not found");
        } else {
          requires.addSelectableItem(item);
          found = true;
View Full Code Here

TOP

Related Classes of gov.nist.scap.xccdf.document.SelectableItem

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.