/* 
 * Copyright 2011 Semantic Designs, Inc. All rights reserved.
 */

package java.lang;

public final class Short extends Number {

    private final short value;

    public Short(short value) {
        this.value = value;
    }

    public static Short valueOf(short b) {
        return new Short(b);
    }

    public short shortValue() {
        return value;
    }

}