Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for inputLocation (0.05 sec)

  1. compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java

         *
         * @return the InputLocation where this POM was imported from, or null if not imported
         */
        public InputLocation getImportedFrom() {
            return importedFrom;
        }
    
        /**
         * Set the location of the POM from which this POM was imported from.
         *
         * @param importedFrom the InputLocation where this POM was imported from, or null if not imported
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3WriterEx.java

        /**
         * Method setStringFormatter.
         *
         * @param stringFormatter
         */
        @Override
        public void setStringFormatter(InputLocation.StringFormatter stringFormatter) {
            super.setStringFormatter(stringFormatter);
        } // -- void setStringFormatter( InputLocation.StringFormatter )
    
        /**
         * Method write.
         *
         * @param writer a writer object.
         * @param model a model object.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemCollectorRequest.java

        }
    
        public ModelProblemCollectorRequest setMessage(String message) {
            this.message = message;
            return this;
        }
    
        public InputLocation getLocation() {
            return location;
        }
    
        public ModelProblemCollectorRequest setLocation(InputLocation location) {
            this.location = location;
            return this;
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Writer.java

         *
         * @param stringFormatter
         */
        public void setStringFormatter(InputLocation.StringFormatter stringFormatter) {
            delegate.setStringFormatter(
                    stringFormatter != null ? location -> stringFormatter.toString(new InputLocation(location)) : null);
        } // -- void setStringFormatter( InputLocation.StringFormatter )
    
        /**
         * Method write.
         *
         * @param writer a writer object.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

        private final InputLocation location;
    
        {
            String modelId = "org.apache.maven:maven-model-builder:"
                    + this.getClass().getPackage().getImplementationVersion() + ":reporting-converter";
            InputSource inputSource = new InputSource();
            inputSource.setModelId(modelId);
            location = new InputLocation(-1, -1, inputSource);
            location.setLocation(0, location);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.model.InputLocation;
    import org.apache.maven.api.model.Model;
    
    /**
     * Collects problems that are encountered during model building. The primary purpose of this component is to account for
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 19 14:50:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/project/interpolation/StringSearchModelInterpolatorTest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.interpolation;
    
    import java.util.Map;
    
    import org.apache.maven.api.model.InputLocation;
    import org.apache.maven.api.model.InputSource;
    import org.apache.maven.api.model.Model;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
    import org.junit.jupiter.api.Test;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. compat/maven-model/src/main/java/org/apache/maven/model/InputLocationTracker.java

         * <code>null</code> if unknown.
         */
        public InputLocation getLocation(Object field);
        /**
         * Sets the location of the specified field.
         *
         * @param field The key of the field, must not be
         * <code>null</code>.
         * @param location The location of the field, may be
         * <code>null</code>.
         */
        public void setLocation(Object field, InputLocation location);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

            InputSource inputSource = new InputSource();
            inputSource.setModelId(DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID);
            InputLocation location = new InputLocation(-1, -1, inputSource);
            location.setLocation(0, location);
    
            List<LifecycleMojo> mojos = goals.getMojos();
            if (mojos != null) {
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 9K bytes
    - Viewed (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PrecedenceCoreExtensionSelector.java

    import java.util.Optional;
    
    import org.apache.maven.api.cli.CoreExtensions;
    import org.apache.maven.api.cli.InvokerRequest;
    import org.apache.maven.api.cli.extensions.CoreExtension;
    import org.apache.maven.api.cli.extensions.InputLocation;
    
    public class PrecedenceCoreExtensionSelector<C extends LookupContext> implements CoreExtensionSelector<C> {
        @Override
        public List<CoreExtension> selectCoreExtensions(LookupInvoker<C> invoker, C context) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 15:32:43 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top