- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getNamespaceUri (0.07 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java
assertEquals("http://maven.apache.org/POM/4.0.0", node.getNamespaceUri()); assertEquals("m", node.getPrefix()); assertEquals("configuration", node.getName()); assertEquals(1, node.getChildren().size()); XmlNode myConfig = node.getChildren().get(0); assertEquals("http://fabric8.io/fabric8-maven-plugin", myConfig.getNamespaceUri()); assertEquals("", myConfig.getPrefix());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java
* that value or attribute will be set from the recessive DOM node. */ String DEFAULT_SELF_COMBINATION_MODE = SELF_COMBINATION_MERGE; @Nonnull String getName(); @Nonnull String getNamespaceUri(); @Nonnull String getPrefix(); @Nullable String getValue(); @Nonnull Map<String, String> getAttributes(); @Nullable
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Nov 27 23:11:34 UTC 2023 - 4.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/BuildModelSourceTransformer.java
handleCiFriendlyVersion(context, model); } // // Infer modelVersion from namespace URI // void handleModelVersion(Model model) { String namespace = model.getDelegate().getNamespaceUri(); if (model.getModelVersion() == null && namespace != null && namespace.startsWith(NAMESPACE_PREFIX)) { model.setModelVersion(namespace.substring(NAMESPACE_PREFIX.length())); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0)