summaryrefslogtreecommitdiffstats
path: root/documentgen-test/src/main
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
commit72231250ed81e10d66bfe70701e64fa5fe50f712 (patch)
tree2728bba1131a6f6e5bdf95afec7d7ff9358dac50 /documentgen-test/src/main
Publish
Diffstat (limited to 'documentgen-test/src/main')
-rw-r--r--documentgen-test/src/main/java/com/yahoo/vespa/document/NodeImpl.java14
-rw-r--r--documentgen-test/src/main/java/com/yahoo/vespa/document/dom/DocumentImpl.java14
2 files changed, 28 insertions, 0 deletions
diff --git a/documentgen-test/src/main/java/com/yahoo/vespa/document/NodeImpl.java b/documentgen-test/src/main/java/com/yahoo/vespa/document/NodeImpl.java
new file mode 100644
index 00000000000..b242adff84d
--- /dev/null
+++ b/documentgen-test/src/main/java/com/yahoo/vespa/document/NodeImpl.java
@@ -0,0 +1,14 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.vespa.document;
+
+import com.yahoo.document.annotation.Annotation;
+
+/**
+ * Example of user provided annotation subtype that vespa-documentgen-plugin supports
+ *
+ * @author vegardh
+ *
+ */
+public class NodeImpl extends Annotation {
+
+}
diff --git a/documentgen-test/src/main/java/com/yahoo/vespa/document/dom/DocumentImpl.java b/documentgen-test/src/main/java/com/yahoo/vespa/document/dom/DocumentImpl.java
new file mode 100644
index 00000000000..715a2b261eb
--- /dev/null
+++ b/documentgen-test/src/main/java/com/yahoo/vespa/document/dom/DocumentImpl.java
@@ -0,0 +1,14 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.vespa.document.dom;
+
+import com.yahoo.document.annotation.Annotation;
+
+/**
+ * Example of user provided annotation subtype that vespa-documentgen-plugin supports
+ *
+ * @author vegardh
+ *
+ */
+public class DocumentImpl extends Annotation {
+
+}