X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler.dummy%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2FErrorMessage.java;h=958fd1204acc104f708be27fa105a2a591869628;hb=3dea4df51b8252fe7cc5f1219e77444eac24bab8;hp=f77f332b84be51a22542136f3832f833c1cd7e64;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scl.compiler.dummy/src/org/simantics/scl/compiler/ErrorMessage.java b/bundles/org.simantics.scl.compiler.dummy/src/org/simantics/scl/compiler/ErrorMessage.java index f77f332b8..958fd1204 100644 --- a/bundles/org.simantics.scl.compiler.dummy/src/org/simantics/scl/compiler/ErrorMessage.java +++ b/bundles/org.simantics.scl.compiler.dummy/src/org/simantics/scl/compiler/ErrorMessage.java @@ -1,36 +1,36 @@ -package org.simantics.scl.compiler; - -public class ErrorMessage { - int line; - int start; - int stop; - String message; - - public ErrorMessage(int line, int start, int stop, String message) { - this.line = line; - this.start = start; - this.stop = stop; - this.message = message; - } - - public int getLine() { - return line; - } - - public int getStart() { - return start; - } - - public int getStop() { - return stop; - } - - public String getMessage() { - return message; - } - - @Override - public String toString() { - return "at " + line + ":" + start + "-" + stop + " " + message; - } -} +package org.simantics.scl.compiler; + +public class ErrorMessage { + int line; + int start; + int stop; + String message; + + public ErrorMessage(int line, int start, int stop, String message) { + this.line = line; + this.start = start; + this.stop = stop; + this.message = message; + } + + public int getLine() { + return line; + } + + public int getStart() { + return start; + } + + public int getStop() { + return stop; + } + + public String getMessage() { + return message; + } + + @Override + public String toString() { + return "at " + line + ":" + start + "-" + stop + " " + message; + } +}