Package scap.check

Examples of scap.check.CheckExport


      // For each check export identify the variable used
      for (CheckExport export : check.getExports()) {
        String variableId = export.getName();
        if (retval.containsKey(variableId)) {
          // Looks like a duplicate variable export
          CheckExport value = retval.get(variableId);
          // if the exports are not the same
          if (!export.equals(value)) {
            throw new RuntimeException("the same variable '"+variableId+"' is being exported multiple times");
          }
        } else {
View Full Code Here

TOP

Related Classes of scap.check.CheckExport

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.