- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for setAddLocationInformation (0.11 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java
delegate = contentTransformer != null ? new MavenStaxReader(contentTransformer::transform) : new MavenStaxReader(); delegate.setAddLocationInformation(addLocationInformation); } /** * Returns the state of the "add default entities" flag. * * @return boolean */ public boolean getAddDefaultEntities() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.2K bytes - Click Count (0) -
compat/maven-toolchain-model/src/main/java/org/apache/maven/toolchain/model/io/xpp3/MavenToolchainsXpp3Writer.java
// --------------------------/ private final MavenToolchainsStaxWriter delegate; public MavenToolchainsXpp3Writer() { delegate = new MavenToolchainsStaxWriter(); delegate.setAddLocationInformation(false); } /** * Method setFileComment. * * @param fileComment a fileComment object. */ public void setFileComment(String fileComment) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat May 31 10:30:45 GMT 2025 - 2.7K bytes - Click Count (0) -
compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Writer.java
// -----------/ // - Methods -/ // -----------/ public MavenXpp3Writer() { this(false); } protected MavenXpp3Writer(boolean addLocationInformation) { delegate.setAddLocationInformation(addLocationInformation); } /** * Method setFileComment. * * @param fileComment a fileComment object. */ public void setFileComment(String fileComment) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.1K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/v4/Xpp3DomPerfTest.java
int i = 0; for (Path pom : state.poms) { try (InputStream is = Files.newInputStream(pom)) { MavenStaxReader reader = new MavenStaxReader(); reader.setAddLocationInformation(false); reader.read(is, true, InputSource.of("id", pom.toString())); i++; } catch (XMLStreamException e) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 3.3K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java
} String toXml(Model model) throws IOException, XMLStreamException { StringWriter sw = new StringWriter(); MavenStaxWriter writer = new MavenStaxWriter(); writer.setAddLocationInformation(false); writer.write(sw, model); return sw.toString(); } Model fromXml(String xml) throws XMLStreamException { return new MavenStaxReader().read(new StringReader(xml)); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 4K bytes - Click Count (0)