1 23 package org.hammurapi.results; 24 25 import java.util.List ; 26 27 31 public interface InspectorSummary extends Comparable { 32 35 public String getDescription(); 36 37 40 public List getLocations(); 41 42 45 int getLocationsCount(); 46 47 50 public String getName(); 51 52 56 public String getVersion(); 57 58 61 public Number getSeverity(); 62 63 String getConfigInfo(); 64 65 69 int getBaseLineLocationsCount(); 70 } | Popular Tags |