Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultLineInFileLocation (0.21 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultLineInFileLocation.java

            return new DefaultLineInFileLocation(path, line, -1, -1);
        }
    
        public static FileLocation from(String path, Integer line, Integer column) {
            return new DefaultLineInFileLocation(path, line, column, -1);
        }
    
        public static FileLocation from(String path, Integer line, Integer column, Integer length) {
            return new DefaultLineInFileLocation(path, line, column, length);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultLineInFileLocation.java

    import org.gradle.tooling.events.problems.LineInFileLocation;
    
    public class DefaultLineInFileLocation extends DefaultFileLocation implements LineInFileLocation {
        private final int line;
        private final int column;
        private final int length;
    
        public DefaultLineInFileLocation(String path, int line, int column, int length) {
            super(path);
            this.line = line;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultLineInFileLocation.java

    import java.io.Serializable;
    
    @NonNullApi
    public class DefaultLineInFileLocation extends DefaultFileLocation implements InternalLineInFileLocation, Serializable {
    
        private final int line;
        private final int column;
        private final int length;
    
        public DefaultLineInFileLocation(String path, int line, int column, int length) {
            super(path);
            this.line = line;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top