Package org.infoglue.deliver.util

Examples of org.infoglue.deliver.util.MathHelper


    return lastModifiedDateString;
  }

  public String getFileSize(long size)
  {
    String fileSize = new MathHelper().fileSize(size);

    return fileSize;
  }
View Full Code Here


   * Used to create a new color-object by hex-values.
   */
 
  public Color getHexColor(String hexadecimalValue)
  {
    return new Color(new MathHelper().hexToDecimal(hexadecimalValue));
  }
View Full Code Here

   * This method gets the math utility.
   */
 
  public MathHelper getMathHelper()
  {
    return new MathHelper();
  }
View Full Code Here

    }
   

    public MathHelper getMathHelper()
    {
        return new MathHelper();
    }
View Full Code Here

TOP

Related Classes of org.infoglue.deliver.util.MathHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.