1 package org.simantics.ltk;
8 public Problem(Location location, String description,
10 this.location = location;
11 this.description = description;
12 this.severity = severity;
15 public Problem(Location location, String description) {
16 this(location, description, Severity.ERROR);
19 public Location getLocation() {
23 public void setLocation(Location location) {
24 this.location = location;
27 public String getDescription() {
31 public void setDescription(String description) {
32 this.description = description;