/**
* Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
* All rights reserved. Use is subject to license terms. See LICENSE.TXT
*/
package org.diirt.datasource.sim;
import java.text.DecimalFormat;
import java.text.NumberFormat;
/**
* Constants that can be used across different values.
*
* @author carcassi
*/
class Constants {
/**
* Common number format for all VDoubles.
*/
static final NumberFormat DOUBLE_FORMAT = new DecimalFormat();
}