Package ch.sahits.game.openpatrician.model

Examples of ch.sahits.game.openpatrician.model.Date.todisplayString()


   * Representation that can be displayed
   * @return
   */
  public String toDisplayString(){
    Date date = Date.getInstance(0); // TODO ugly
    return date.todisplayString(dayInMonth, month, year);
  }
 
  public boolean isSameDate(DateObject date){
    if (getDayInMonth()!=date.getDayInMonth() ||
      getMonth()!=date.getMonth() ||
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.