Class Message.IssueLocation

  • Enclosing class:
    Message

    protected static class Message.IssueLocation
    extends java.lang.Object
    Represents an issue location.
    Author:
    adapted from xText as calculation is not accessible
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected int column
      1-based column.
      protected int columnEnd
      1-based column end.
      private java.lang.String details  
      protected int length  
      protected int lineNumber
      1-based line number.
      protected int lineNumberEnd
      1-based line number end.
      private java.lang.String location  
      protected int offset
      0-based offset.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected IssueLocation()
      Creates an issue location.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • lineNumber

        protected int lineNumber
        1-based line number.
      • column

        protected int column
        1-based column.
      • lineNumberEnd

        protected int lineNumberEnd
        1-based line number end.
      • columnEnd

        protected int columnEnd
        1-based column end.
      • offset

        protected int offset
        0-based offset.
      • length

        protected int length
      • location

        private java.lang.String location
      • details

        private java.lang.String details
    • Constructor Detail

      • IssueLocation

        protected IssueLocation()
        Creates an issue location.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object