Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getImportedFrom (0.06 sec)

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

                                    e -> e.getKey(),
                                    e -> e.getValue() == location ? this : new InputLocation(e.getValue())));
            this.importedFrom = location.getImportedFrom() != null ? new InputLocation(location.getImportedFrom()) : null;
        }
    
        public InputLocation(int lineNumber, int columnNumber) {
            this.lineNumber = lineNumber;
            this.columnNumber = columnNumber;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java

        public InputSource(org.apache.maven.api.model.InputSource source) {
            this.modelId = source.getModelId();
            this.location = source.getLocation();
            this.importedFrom = source.getImportedFrom() != null ? new InputLocation(source.getImportedFrom()) : null;
        }
    
        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Method clone.
         *
         * @return InputSource
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top