Modified construction of built-in yang types.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Int16.java
index 40857d1c32526fcca3b1c0f16dfe246fc2dcf107..829cd140b18a04740e26ba75b4ab5c851e514866 100644 (file)
@@ -7,39 +7,32 @@
  */
 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.SchemaPath;
 import org.opendaylight.controller.yang.model.api.type.IntegerTypeDefinition;
-import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
 
 /**
  * Implementation of Yang int16 built-in type. <br>
  * int16 represents integer values between -32768 and 32767, inclusively. The
  * Java counterpart of Yang int16 built-in type is {@link Short}.
- * 
+ *
  * @see AbstractSignedInteger
  */
-public class Int16 extends AbstractSignedInteger {
-
+public final class Int16 extends AbstractSignedInteger {
     private static final QName name = BaseTypes.constructQName("int16");
-    private Short defaultValue = null;
-    private static final String description = 
-            "int16  represents integer values between -32768 and 32767, inclusively.";
+    private final Short defaultValue = null;
+    private static final String description = "int16  represents integer values between -32768 and 32767, inclusively.";
+    private final IntegerTypeDefinition baseType;
 
-    public Int16() {
-        super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");
-    }
+    public Int16(final SchemaPath path) {
+        super(path, name, description, Short.MIN_VALUE, Short.MAX_VALUE, "");
+        this.baseType = this;
 
-    public Int16(final List<RangeConstraint> rangeStatements,
-            final String units, final Short defaultValue) {
-        super(name, description, rangeStatements, units);
-        this.defaultValue = defaultValue;
     }
 
     @Override
     public IntegerTypeDefinition getBaseType() {
-        return this;
+        return baseType;
     }
 
     @Override