Fixed bugs in naming conventions of packages.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / model / util / Int8.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/Int8.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/Int8.java
deleted file mode 100644 (file)
index 53b9c19..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-/*\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.IntegerTypeDefinition;\r
-import org.opendaylight.controller.model.api.type.RangeConstraint;\r
-import org.opendaylight.controller.yang.common.QName;\r
-\r
-/**\r
- * Implementation of Yang int8 built-in type.\r
- * <br>\r
- * int8 represents integer values between -128 and 127, inclusively. The Java counterpart of \r
- * Yang int8 built-in type is {@link Byte}.\r
- * \r
- * @see AbstractSignedInteger\r
- */\r
-public class Int8 extends AbstractSignedInteger {\r
-\r
-    private static final QName name = BaseTypes.constructQName("int8");\r
-    private Byte defaultValue = null;\r
-    private static final String description = \r
-            "represents integer values between -128 and 127, inclusively.";\r
-    \r
-    public Int8() {\r
-        super(name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");\r
-    }\r
-\r
-    public Int8(final Byte defaultValue) {\r
-        super(name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");\r
-        this.defaultValue = defaultValue;\r
-    }\r
-\r
-    public Int8(final List<RangeConstraint> rangeStatements,\r
-            final String units, final Byte 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 IntegerTypeDefinition 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
-        Int8 other = (Int8) 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("Int8 [defaultValue=");\r
-        builder.append(defaultValue);\r
-        builder.append(", AbstractInteger=");\r
-        builder.append(super.toString());\r
-        builder.append("]");\r
-        return builder.toString();\r
-    }\r
-}\r