Fixed bugs in naming conventions of packages.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Uint8.java
-/*\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.util;\r
-\r
-import java.util.List;\r
-\r
-import org.opendaylight.controller.model.api.type.RangeConstraint;\r
-import org.opendaylight.controller.model.api.type.UnsignedIntegerTypeDefinition;\r
-import org.opendaylight.controller.yang.common.QName;\r
-\r
-/**\r
- * Implementation of Yang uint8 built-in type.\r
- * <br>\r
- * uint8 represents integer values between 0 and 255, inclusively. The Java counterpart of \r
- * Yang uint8 built-in type is {@link Short}.\r
- * \r
- * @see AbstractUnsignedInteger\r
- */\r
-public class Uint8 extends AbstractUnsignedInteger {\r
-\r
-    private static final QName name = BaseTypes.constructQName("uint8");\r
-    private Short defaultValue = null;\r
-    private static final String description = \r
-            "uint8  represents integer values between 0 and 255, inclusively.";\r
-\r
-    public Uint8() {\r
-        super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");\r
-    }\r
-\r
-    public Uint8(final Short defaultValue) {\r
-        super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");\r
-        this.defaultValue = defaultValue;\r
-    }\r
-\r
-    public Uint8(final List<RangeConstraint> rangeStatements,\r
-            final String units, final Short defaultValue) {\r
-        super(name, description, rangeStatements, units);\r
-        this.defaultValue = defaultValue;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()\r
-     */\r
-    @Override\r
-    public UnsignedIntegerTypeDefinition getBaseType() {\r
-        return this;\r
-    }\r
-\r
-    /*\r
-     * (non-Javadoc)\r
-     * \r
-     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()\r
-     */\r
-    @Override\r
-    public Object getDefaultValue() {\r
-        return defaultValue;\r
-    }\r
-\r
-    @Override\r
-    public int hashCode() {\r
-        final int prime = 31;\r
-        int result = super.hashCode();\r
-        result = prime * result\r
-                + ((defaultValue == null) ? 0 : defaultValue.hashCode());\r
-        return result;\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object obj) {\r
-        if (this == obj) {\r
-            return true;\r
-        }\r
-        if (!super.equals(obj)) {\r
-            return false;\r
-        }\r
-        if (getClass() != obj.getClass()) {\r
-            return false;\r
-        }\r
-        Uint8 other = (Uint8) obj;\r
-        if (defaultValue == null) {\r
-            if (other.defaultValue != null) {\r
-                return false;\r
-            }\r
-        } else if (!defaultValue.equals(other.defaultValue)) {\r
-            return false;\r
-        }\r
-        return true;\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        StringBuilder builder = new StringBuilder();\r
-        builder.append("Uint8 [defaultValue=");\r
-        builder.append(defaultValue);\r
-        builder.append(", AbstractInteger=");\r
-        builder.append(super.toString());\r
-        builder.append("]");\r
-        return builder.toString();\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.util;
+
+import java.util.List;
+
+import org.opendaylight.controller.yang.common.QName;
+import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
+import org.opendaylight.controller.yang.model.api.type.UnsignedIntegerTypeDefinition;
+
+/**
+ * Implementation of Yang uint8 built-in type.
+ * <br>
+ * uint8 represents integer values between 0 and 255, inclusively. The Java counterpart of 
+ * Yang uint8 built-in type is {@link Short}.
+ * 
+ * @see AbstractUnsignedInteger
+ */
+public class Uint8 extends AbstractUnsignedInteger {
+
+    private static final QName name = BaseTypes.constructQName("uint8");
+    private Short defaultValue = null;
+    private static final String description = 
+            "uint8  represents integer values between 0 and 255, inclusively.";
+
+    public Uint8() {
+        super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");
+    }
+
+    public Uint8(final Short defaultValue) {
+        super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");
+        this.defaultValue = defaultValue;
+    }
+
+    public Uint8(final List<RangeConstraint> rangeStatements,
+            final String units, final Short defaultValue) {
+        super(name, description, rangeStatements, units);
+        this.defaultValue = defaultValue;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
+     */
+    @Override
+    public UnsignedIntegerTypeDefinition getBaseType() {
+        return this;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()
+     */
+    @Override
+    public Object getDefaultValue() {
+        return defaultValue;
+    }
+
+    @Override
+    public int hashCode() {
+        final int prime = 31;
+        int result = super.hashCode();
+        result = prime * result
+                + ((defaultValue == null) ? 0 : defaultValue.hashCode());
+        return result;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj) {
+            return true;
+        }
+        if (!super.equals(obj)) {
+            return false;
+        }
+        if (getClass() != obj.getClass()) {
+            return false;
+        }
+        Uint8 other = (Uint8) obj;
+        if (defaultValue == null) {
+            if (other.defaultValue != null) {
+                return false;
+            }
+        } else if (!defaultValue.equals(other.defaultValue)) {
+            return false;
+        }
+        return true;
+    }
+
+    @Override
+    public String toString() {
+        StringBuilder builder = new StringBuilder();
+        builder.append("Uint8 [defaultValue=");
+        builder.append(defaultValue);
+        builder.append(", AbstractInteger=");
+        builder.append(super.toString());
+        builder.append("]");
+        return builder.toString();
+    }
+}