Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isLocationTracking (1.62 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

            request.setTwoPhaseBuilding(twoPhaseBuilding);
    
            return this;
        }
    
        @Override
        public boolean isLocationTracking() {
            return request.isLocationTracking();
        }
    
        @Override
        public FilterModelBuildingRequest setLocationTracking(boolean locationTracking) {
            request.setLocationTracking(locationTracking);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

        @Nonnull
        Session getSession();
    
        @Nonnull
        ModelSource getSource();
    
        int getValidationLevel();
    
        boolean isTwoPhaseBuilding();
    
        boolean isLocationTracking();
    
        /**
         * Indicates if the model to be built is a local project or a dependency.
         * In case the project is loaded externally from a remote repository (as a dependency or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @return {@code true} if location tracking is enabled, {@code false} otherwise.
         */
        boolean isLocationTracking();
    
        /**
         * Enables/disables the tracking of line/column numbers for the model source being parsed. By default, input
         * locations are not tracked.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                options.put(ModelProcessor.SOURCE, modelSource);
                options.put(ModelReader.ROOT_DIRECTORY, request.getRootDirectory());
    
                InputSource source;
                if (request.isLocationTracking()) {
                    source = new InputSource(null, modelSource.getLocation());
                    options.put(ModelProcessor.INPUT_SOURCE, new org.apache.maven.model.InputSource(source));
                } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top