package org.simantics.utils.strings; /** * Indicates an error in an input string. */ public interface StringInputProblem { public static enum Severity { Error, Warning } String getDescription(); int getBegin(); int getEnd(); Severity getSeverity(); }