aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2022-05-23 11:16:50 +0200
committerLester Solbakken <lesters@oath.com>2022-05-23 11:16:50 +0200
commita63beff38284fd5a50092fc1d21f3427c149a714 (patch)
tree14edade4711ed4be834b7a7e4cb79787b0b6094b /config-model/src
parentf122ef9fe4790b05448870ad73364bfa2bf68554 (diff)
Fix xml docproc tags
Diffstat (limited to 'config-model/src')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderConfig.java22
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderOption.java2
2 files changed, 12 insertions, 12 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderConfig.java b/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderConfig.java
index 1558f01c231..a2286647cdd 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderConfig.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderConfig.java
@@ -8,17 +8,17 @@ import org.w3c.dom.NodeList;
/**
* Translates config in services.xml of the form
*
- * <embedder id="..." class="..." bundle="..." def="...">
- * <!-- options -->
- * </embedder>
+ * &lt;embedder id="..." class="..." bundle="..." def="..."&gt;
+ * &lt;!-- options --&gt;
+ * &lt;/embedder&gt;
*
* to component configuration of the form
*
- * <component id="..." class="..." bundle="...">
- * <config name=def>
- * <!-- options -->
- * </config>
- * </component>
+ * &lt;component id="..." class="..." bundle="..."&gt;
+ * &lt;config name=def&gt;
+ * &lt;!-- options --&gt;
+ * &lt;/config&gt;
+ * &lt;/component&gt;
*
* with some added interpretations based on recognizing the class.
*
@@ -47,11 +47,11 @@ public class EmbedderConfig {
}
/**
- * Transforms the <embedder ...> element to component configuration.
+ * Transforms the &lt;embedder ...&gt; element to component configuration.
*
* @param deployState the deploy state - as config generation can depend on context
- * @param embedderSpec the XML element containing the <embedder ...>
- * @return a new XML element containting the <component ...> configuration
+ * @param embedderSpec the XML element containing the &lt;embedder ...&gt;
+ * @return a new XML element containting the &lt;component ...&gt; configuration
*/
public static Element transform(DeployState deployState, Element embedderSpec) {
EmbedderConfigTransformer transformer = getEmbedderTransformer(embedderSpec, deployState.isHosted());
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderOption.java b/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderOption.java
index 4537d196d68..206745887d1 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderOption.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/xml/embedder/EmbedderOption.java
@@ -75,7 +75,7 @@ public class EmbedderOption {
}
/**
- * Transforms model options of type <x id="..." url="..." path="..." /> to the
+ * Transforms model options of type &lt;x id="..." url="..." path="..." /&gt; to the
* required fields in the config definition.
*/
public static class ModelOptionTransformer extends OptionTransformer {