Skip to content
Snippets Groups Projects

Hazard response

All threads resolved!
2 files
+ 26
22
Compare changes
  • Side-by-side
  • Inline
Files
2
package gov.usgs.earthquake.nshmp.www.meta;
public class Parameter {
private final String display;
private final String value;
public Parameter(String display, String value) {
this.display = display;
this.value = value;
}
}
Loading