- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 40 for getLineNumber (0.06 sec)
-
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java
this.lineNumber = lineNumber; this.columnNumber = columnNumber; } public ModelParserException(Throwable cause) { this(null, cause); } public int getLineNumber() { return lineNumber; } public int getColumnNumber() { return columnNumber; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Sep 22 07:25:10 UTC 2023 - 1.9K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsProblemCollector.java
public void add(SettingsProblem.Severity severity, String message, int line, int column, Exception cause) { if (line <= 0 && column <= 0 && cause instanceof SettingsParseException e) { line = e.getLineNumber(); column = e.getColumnNumber(); } SettingsProblem problem = new DefaultSettingsProblem(message, severity, source, line, column, cause); problems.add(problem); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java
assertNotNull(location, "Profile location should not be null for profile: " + profile.getId()); assertTrue( location.getLineNumber() > 0, "Profile location line number should be positive, but was: " + location.getLineNumber() + " for profile: " + profile.getId()); assertTrue( location.getColumnNumber() > 0,
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 33.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/settings/SettingsConfigurationException.java
cause); this.lineNumber = lineNumber; this.columnNumber = columnNumber; } public int getColumnNumber() { return columnNumber; } public int getLineNumber() { return lineNumber; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java
this.exception = exception; this.version = version; } @Override public String getSource() { return source; } @Override public int getLineNumber() { return lineNumber; } @Override public int getColumnNumber() { return columnNumber; } @Override public String getModelId() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SAXRuntimeException.java
final SAXParseException e = (SAXParseException) cause; if (e.getSystemId() != null) { buf.append(" at ").append(e.getSystemId()); } final int lineNumber = e.getLineNumber(); final int columnNumber = e.getColumnNumber(); buf.append("( lineNumber = ").append(lineNumber).append(", columnNumber = ").append(columnNumber).append(")"); } return new String(buf);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataParseException.java
} /** * Gets the one-based index of the line containing the error. * * @return The one-based index of the line containing the error or a non-positive value if unknown. */ public int getLineNumber() { return lineNumber; } /** * Gets the one-based index of the column containing the error. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelParseException.java
} /** * Gets the one-based index of the line containing the error. * * @return The one-based index of the line containing the error or a non-positive value if unknown. */ public int getLineNumber() { return lineNumber; } /** * Gets the one-based index of the column containing the error. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 3.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsParseException.java
} /** * Gets the one-based index of the line containing the error. * * @return The one-based index of the line containing the error or a non-positive value if unknown. */ public int getLineNumber() { return lineNumber; } /** * Gets the one-based index of the column containing the error. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 3.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PrecedenceCoreExtensionSelector.java
} return List.copyOf(selectedExtensions.values()); } protected String formatLocation(InputLocation location) { return location.getSource().getLocation() + ":" + location.getLineNumber(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 15:32:43 UTC 2025 - 4.6K bytes - Viewed (0)