Spell-check Status and UsesNode
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / Status.java
index bc36ef002fb96545cff6f18eb7fe12d32900c1d0..af91f69bc410257af775649731af3f91332acfb8 100644 (file)
@@ -1,34 +1,34 @@
-/*\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.model.api;\r
-\r
-/**\r
- * Enum describing YANG 'status' statement. If no status is specified, the\r
- * default is CURRENT.\r
- */\r
-public enum Status {\r
-\r
-    /**\r
-     * CURRENT means that the definition is current and valid.\r
-     */\r
-    CURRENT,\r
-\r
-    /**\r
-     * DEPRECATED indicates an obsolete definition, but it permits new/\r
-     * continued implementation in order to foster interoperability with\r
-     * older/existing implementations.\r
-     */\r
-    DEPRECATED,\r
-\r
-    /**\r
-     * OBSOLETE means the definition is obsolete and SHOULD NOT be implemented\r
-     * and/or can be removed from implementations.\r
-     */\r
-    OBSOLETE\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.model.api;
+
+/**
+ * Enumeration describing YANG 'status' statement. If no status is specified, the
+ * default is CURRENT.
+ */
+public enum Status {
+
+    /**
+     * CURRENT means that the definition is current and valid.
+     */
+    CURRENT,
+
+    /**
+     * DEPRECATED indicates an obsolete definition, but it permits new/
+     * continued implementation in order to foster interoperability with
+     * older/existing implementations.
+     */
+    DEPRECATED,
+
+    /**
+     * OBSOLETE means the definition is obsolete and SHOULD NOT be implemented
+     * and/or can be removed from implementations.
+     */
+    OBSOLETE
+
+}