1 package xuml.tools.model.compiler.runtime.query; 2 3 import xuml.tools.model.compiler.runtime.Entity; 4 5 public class StringConstant<T extends Entity<T>> extends StringExpression<T> { 6 7 private final String value; 8 9 public StringConstant(String value) { 10 this.value = value; 11 } 12 13 public String getValue() { 14 return value; 15 } 16 17 }