Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toApiSource (1.25 sec)

  1. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java

            try {
                org.apache.maven.api.model.Model model =
                        delegate.read(reader, strict, source != null ? source.toApiSource() : null);
                return new Model(model);
            } catch (XMLStreamException e) {
                throw new XmlPullParserException(e.getMessage(), null, e);
            }
        }
    
        /**
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java

                            columnNumber,
                            source != null ? source.toApiSource() : null,
                            locations.keySet().iterator().next());
                } else {
                    return org.apache.maven.api.model.InputLocation.of(
                            lineNumber, columnNumber, source != null ? source.toApiSource() : null);
                }
            } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  3. compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java

         * This method is used for converting between the compat model and the API model.
         *
         * @return the equivalent API model InputSource
         */
        public org.apache.maven.api.model.InputSource toApiSource() {
            return org.apache.maven.api.model.InputSource.of(modelId, location);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top