Provide some yangtools.yang.common javadoc 79/70879/2
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 12 Apr 2018 23:26:11 +0000 (01:26 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 12 Apr 2018 23:51:04 +0000 (01:51 +0200)
This package deserves an introduction, provide one.

Change-Id: I9dfab88255d53915ed0df8ca9d59208a1030824c
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
yang/yang-common/pom.xml
yang/yang-common/src/main/java/org/opendaylight/yangtools/yang/common/pkg-info.java [new file with mode: 0644]

index 5d4ec242336bc58ea2aec0e8c271a1db15622785..2f97e23e935b40192b439de6e6b06052dbf1413e 100644 (file)
@@ -22,7 +22,7 @@
     <version>2.0.4-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>${project.artifactId}</name>
-    <description>${project.artifactId}</description>
+    <description>ODL :: YANG Tools :: ${project.artifactId}</description>
 
     <dependencyManagement>
         <dependencies>
diff --git a/yang/yang-common/src/main/java/org/opendaylight/yangtools/yang/common/pkg-info.java b/yang/yang-common/src/main/java/org/opendaylight/yangtools/yang/common/pkg-info.java
new file mode 100644 (file)
index 0000000..ce0d61f
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2015 Pantheon Technologies s.r.o. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * Common YANG concepts and constants expressed in terms of Java. This notably includes the concepts of
+ * <ul>
+ * <li>a {@link YangVersion}</li>
+ * <li>a {@link Revision}</li>
+ * <li>a {@link QNameModule}</li>
+ * <li>a {@link QName}</li>
+ * <li>a Java-native representation of a YANG string, {@link DerivedString}</li>
+ * <li>a Java-native representations of numeric YANG types, like {@link Uint64}, {@link Decimal64} and
+ *     {@link Empty}</li>
+ * </ul>
+ */
+package org.opendaylight.yangtools.yang.common;