Class Anchor


  • public abstract class Anchor
    extends java.lang.Object
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      static Anchor create​(java.lang.Integer line, Anchor.LineType lineType, Anchor.FileType fileType, java.lang.String path, java.lang.String srcPath)  
      static Anchor create​(java.lang.Integer line, java.lang.String lineType, java.lang.String fileType, java.lang.String path, java.lang.String srcPath)  
      abstract java.lang.String fileType()  
      abstract java.lang.Integer line()  
      abstract java.lang.String lineType()  
      abstract java.lang.String path()  
      abstract java.lang.String srcPath()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • line

        @Nullable
        public abstract java.lang.Integer line()
      • lineType

        @Nullable
        public abstract java.lang.String lineType()
      • fileType

        @Nullable
        public abstract java.lang.String fileType()
      • path

        public abstract java.lang.String path()
      • srcPath

        @Nullable
        public abstract java.lang.String srcPath()
      • create

        public static Anchor create​(java.lang.Integer line,
                                    java.lang.String lineType,
                                    java.lang.String fileType,
                                    java.lang.String path,
                                    java.lang.String srcPath)