Fixed bugs in naming conventions of packages.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / type / BitsTypeDefinition.java
@@ -1,30 +1,30 @@
-/*\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.controller.model.api.type;\r
-\r
-import java.util.List;\r
-\r
-import org.opendaylight.controller.yang.model.api.SchemaNode;\r
-import org.opendaylight.controller.yang.model.api.TypeDefinition;\r
-\r
-public interface BitsTypeDefinition extends TypeDefinition<BitsTypeDefinition> {\r
-\r
-    public List<Bit> getBits();\r
-\r
-    interface Bit extends SchemaNode {\r
-        /**\r
-         * The position value MUST be in the range 0 to 4294967295, and it MUST\r
-         * be unique within the bits type.\r
-         * \r
-         * @return The position value of bit in range from 0 to 4294967295.\r
-         */\r
-        public Long getPosition();\r
-\r
-        public String getName();\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.controller.yang.model.api.type;
+
+import java.util.List;
+
+import org.opendaylight.controller.yang.model.api.SchemaNode;
+import org.opendaylight.controller.yang.model.api.TypeDefinition;
+
+public interface BitsTypeDefinition extends TypeDefinition<BitsTypeDefinition> {
+
+    public List<Bit> getBits();
+
+    interface Bit extends SchemaNode {
+        /**
+         * The position value MUST be in the range 0 to 4294967295, and it MUST
+         * be unique within the bits type.
+         * 
+         * @return The position value of bit in range from 0 to 4294967295.
+         */
+        public Long getPosition();
+
+        public String getName();
+    }
+}