Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DefaultLineInFileLocation (0.37 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)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

        public InternalProblemBuilder lineInFileLocation(String path, int line) {
            this.addLocation(DefaultLineInFileLocation.from(path, line));
            return this;
        }
    
        @Override
        public InternalProblemBuilder lineInFileLocation(String path, int line, int column) {
            this.addLocation(DefaultLineInFileLocation.from(path, line, column));
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

    import org.gradle.api.problems.internal.DefaultDeprecationData;
    import org.gradle.api.problems.internal.DefaultFileLocation;
    import org.gradle.api.problems.internal.DefaultGeneralData;
    import org.gradle.api.problems.internal.DefaultLineInFileLocation;
    import org.gradle.api.problems.internal.DefaultOffsetInFileLocation;
    import org.gradle.api.problems.internal.DefaultPluginIdLocation;
    import org.gradle.api.problems.internal.DefaultProblem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

                if (location instanceof LineInFileLocation) {
                    LineInFileLocation fileLocation = (LineInFileLocation) location;
                    return new org.gradle.internal.build.event.types.DefaultLineInFileLocation(fileLocation.getPath(), fileLocation.getLine(), fileLocation.getColumn(), fileLocation.getLength());
                } else if (location instanceof OffsetInFileLocation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    import org.gradle.tooling.events.problems.internal.DefaultFailureContainer;
    import org.gradle.tooling.events.problems.internal.DefaultFileLocation;
    import org.gradle.tooling.events.problems.internal.DefaultLineInFileLocation;
    import org.gradle.tooling.events.problems.internal.DefaultOffsetInFileLocation;
    import org.gradle.tooling.events.problems.internal.DefaultPluginIdLocation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top