]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils/src/org/simantics/utils/strings/StringInputProblem.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils / src / org / simantics / utils / strings / StringInputProblem.java
1 package org.simantics.utils.strings;
2
3 /**
4  * Indicates an error in an input string.
5  */
6 public interface StringInputProblem {
7
8         public static enum Severity {
9                 Error, Warning
10         }
11         
12         String getDescription();
13         int getBegin();
14         int getEnd();
15         Severity getSeverity();
16         
17 }