Returns the list of output locations in the script
()
| 149 | * Returns the list of output locations in the script |
| 150 | */ |
| 151 | public List<String> getOutputLocations() { |
| 152 | ArrayList<String> locations = new ArrayList<String>(); |
| 153 | for (OutputStats output : getOutputStats()) { |
| 154 | locations.add(output.getLocation()); |
| 155 | } |
| 156 | return Collections.unmodifiableList(locations); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Returns the list of output names in the script |