277278279280281282283284285
return lastModifiedDateString; } public String getFileSize(long size) { String fileSize = new MathHelper().fileSize(size); return fileSize; }
53545556575859
* Used to create a new color-object by hex-values. */ public Color getHexColor(String hexadecimalValue) { return new Color(new MathHelper().hexToDecimal(hexadecimalValue)); }
473474475476477478479
* This method gets the math utility. */ public MathHelper getMathHelper() { return new MathHelper(); }
164165166167168169170
} public MathHelper getMathHelper() { return new MathHelper(); }