//GenericConstructor.java
//A non-generic class with a generic constructor.

class GenericConstructor
{
    private double value;

    public <T extends Number> GenericConstructor(T input)
    {
        value = input.doubleValue();
    }

    public void showValue()
    {
        System.out.println("Value: " + value);
    }
}
