Package net.bnubot.webbot.client.types

Examples of net.bnubot.webbot.client.types.BeanDate


  public static BeanDate beanDate() {
    return beanDate(new Date());
  }

  private static BeanDate beanDate(Date date) {
    BeanDate bd = new BeanDate();
    bd.time = date.getTime();
    bd.string = DateFormat.getTimeInstance().format(date);
    return bd;
  }
View Full Code Here

TOP

Related Classes of net.bnubot.webbot.client.types.BeanDate

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.