Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for DefaultFileLocation (0.51 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultFileLocation.java

     */
    
    package org.gradle.tooling.events.problems.internal;
    
    import org.gradle.tooling.events.problems.FileLocation;
    
    public class DefaultFileLocation implements FileLocation {
    
        private final String path;
    
        public DefaultFileLocation(String path) {
            this.path = path;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 972 bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultFileLocation.java

    import java.io.Serializable;
    
    public class DefaultFileLocation implements FileLocation, Serializable {
        private final String path;
    
        protected DefaultFileLocation(String path) {
            this.path = path;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        public static FileLocation from(String path) {
            return new DefaultFileLocation(path);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultFileLocation.java

    import org.gradle.tooling.internal.protocol.problem.InternalFileLocation;
    
    import java.io.Serializable;
    
    @NonNullApi
    public class DefaultFileLocation implements InternalFileLocation, Serializable {
        private final String path;
    
        public DefaultFileLocation(String path) {
            this.path = path;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultLineInFileLocation.java

    import org.gradle.api.NonNullApi;
    import org.gradle.tooling.internal.protocol.problem.InternalLineInFileLocation;
    
    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;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultOffsetInFileLocation.java

    import org.gradle.api.NonNullApi;
    import org.gradle.tooling.internal.protocol.problem.InternalOffsetInFileLocation;
    
    import java.io.Serializable;
    
    @NonNullApi
    public class DefaultOffsetInFileLocation extends DefaultFileLocation implements InternalOffsetInFileLocation, Serializable {
        private final int offset;
        private final int length;
    
        public DefaultOffsetInFileLocation(String path, int offset, int length) {
            super(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultOffsetInFileLocation.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.problems.internal;
    
    import org.gradle.tooling.events.problems.OffsetInFileLocation;
    
    public class DefaultOffsetInFileLocation extends DefaultFileLocation implements OffsetInFileLocation {
        private final int offset;
        private final int length;
    
        public DefaultOffsetInFileLocation(String path, int offset, int length) {
            super(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultOffsetInFileLocation.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    public class DefaultOffsetInFileLocation extends DefaultFileLocation implements OffsetInFileLocation {
    
        private final int offset;
        private final int length;
    
        private DefaultOffsetInFileLocation(String path, int offset, int length) {
            super(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultLineInFileLocation.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.problems.internal;
    
    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) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultLineInFileLocation.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    public class DefaultLineInFileLocation extends DefaultFileLocation implements LineInFileLocation {
    
        private final int line;
        private final int column;
        private final int length;
    
        private DefaultLineInFileLocation(String path, int line, int column, int 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)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                if (value == null) {
                    out.nullValue();
                    return;
                }
    
                if (value instanceof DefaultFileLocation) {
                    new FileLocationAdapter().write(out, (DefaultFileLocation) value);
                    return;
                }
                if (value instanceof DefaultPluginIdLocation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top