- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 57 for getLocations (0.11 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java
} else { return getOtherLocation(key); } } // -- InputLocation getLocation( Object ) /** * * * @return Map */ public java.util.Map<Object, InputLocation> getLocations() { return locations; } // -- java.util.Map<Object, InputLocation> getLocations() /** * * * @param key * @param location */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11.5K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java
return columnNumber; } public InputSource getSource() { return source; } public InputLocation getLocation(Object key) { return locations != null ? locations.get(key) : null; } public Map<Object, InputLocation> getLocations() { return locations; } /** * Gets the parent InputLocation where this InputLocation may have been imported from.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 6.7K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsReader.java
} catch (XMLStreamException e) { throw new ToolchainsParseException( e.getMessage(), e.getLocation().getLineNumber(), e.getLocation().getColumnNumber(), e); } } @Override public PersistedToolchains read(Reader input, Map<String, ?> options) throws IOException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/MergerTest.java
InputLocation propertiesLocation = model.getLocation("properties"); assertNotNull(propertiesLocation); assertEquals(13, propertiesLocation.getLineNumber()); assertEquals(5, propertiesLocation.getColumnNumber()); InputLocation filterPropLocation = propertiesLocation.getLocation("my.filter.value"); assertNotNull(filterPropLocation);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java
} } // -- InputSource clone() /** * Get the path/URL of the POM or {@code null} if unknown. * * @return String */ public String getLocation() { return this.location; } // -- String getLocation() /** * Get the identifier of the POM in the format {@code * <groupId>:<artifactId>:<version>}. * * @return String */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
} LOGGER.debug( "Reading installation settings from '{}'", getLocation(settingsRequest.getGlobalSettingsSource(), settingsRequest.getGlobalSettingsFile())); LOGGER.debug( "Reading project settings from '{}'", getLocation(settingsRequest.getProjectSettingsSource(), settingsRequest.getProjectSettingsFile())); LOGGER.debug(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java
String modelId = null; if (req.getLocation() != null) { line = req.getLocation().getLineNumber(); column = req.getLocation().getColumnNumber(); if (req.getLocation().getSource() != null) { modelId = req.getLocation().getSource().getModelId(); source = req.getLocation().getSource().getLocation(); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsReader.java
} catch (XMLStreamException e) { throw new SettingsParseException( e.getMessage(), e.getLocation().getLineNumber(), e.getLocation().getColumnNumber(), e); } } @Override public Settings read(Reader input, Map<String, ?> options) throws IOException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemTest.java
assertEquals("", problem.getLocation()); problem = new DefaultProblem(null, null, "SOURCE", -1, -1, null); assertEquals("SOURCE", problem.getLocation()); problem = new DefaultProblem(null, null, null, 42, -1, null); assertEquals("line 42", problem.getLocation()); problem = new DefaultProblem(null, null, null, -1, 127, null);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/DefaultMetadataReader.java
} catch (XMLStreamException e) { throw new MetadataParseException( e.getMessage(), e.getLocation().getLineNumber(), e.getLocation().getColumnNumber(), e); } } public Metadata read(InputStream input, Map<String, ?> options) throws IOException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0)