Migrate yang-common to bnd-parent
[yangtools.git] / common / yang-common / src / main / java / org / opendaylight / yangtools / yang / common / package-info.java
1 /*
2  * Copyright (c) 2018 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 /**
9  * Common YANG concepts and constants expressed in terms of Java. This notably includes the concepts of
10  * <ul>
11  *   <li>a {@link YangVersion}</li>
12  *   <li>a {@link Revision}</li>
13  *   <li>a {@link QNameModule}</li>
14  *   <li>a {@link QName}</li>
15  *   <li>a Java-native representation of a YANG string, {@link DerivedString}</li>
16  *   <li>a Java-native representations of numeric YANG types, like {@link Uint64}, {@link Decimal64} and
17  *     {@link Empty}</li>
18  * </ul>
19  */
20 @Export
21 package org.opendaylight.yangtools.yang.common;
22
23 import org.osgi.annotation.bundle.Export;