Fix license header violations in yang-binding
[yangtools.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / Augmentation.java
index ad8401b0a7ec5ed7f7ec965cb41565ade14d3b9a..cb6f1a1e758cfcff34ced3445c9939aa5e1fc572 100644 (file)
@@ -1,17 +1,26 @@
-/*\r
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-package org.opendaylight.yangtools.yang.binding;\r
-\r
-/**\r
- * Augmentation (extension) of other interface\r
- *\r
- * @param <T> Class to which this implementation is extension.\r
- */\r
-public interface Augmentation<T> {\r
-\r
-}\r
+/*
+ * Copyright (c) 2013 Cisco Systems, Inc. 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
+ */
+package org.opendaylight.yangtools.yang.binding;
+
+/**
+ * Augmentation (extension) of other interface.
+ * 
+ * This interface uniquely bounds Augmentation to generated 
+ * interface.
+ * 
+ * All interfaces generated from YANG Augmentation statement
+ * must implement this interface with parameter <code>P</code>
+ * which uniquely points to it's target class.
+ * 
+ * 
+ *
+ * @param <T> Class to which this implementation is extension.
+ */
+public interface Augmentation<T> {
+
+}