lphystudio.app.graphicalmodelpanel.viewer.DecimalFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-studio Show documentation
Show all versions of lphy-studio Show documentation
The GUI for LPhy language.
The newest version!
package lphystudio.app.graphicalmodelpanel.viewer;
public class DecimalFormat {
public static java.text.DecimalFormat FORMAT = new java.text.DecimalFormat();
static {
FORMAT.setMaximumFractionDigits(6);
}
}