SystemTime.java :  » UnTagged » my-time-tracker » com » myTimeUtils » android » TimeTracker » System » Android Open Source

Android Open Source » UnTagged » my time tracker 
my time tracker » com » myTimeUtils » android » TimeTracker » System » SystemTime.java
package com.myTimeUtils.android.TimeTracker.System;
/**
 * Abstracts system time information.
 *
 * @author Joseph Walker
 */
public interface SystemTime{
  /**
   * Gets the day number.
   *
   * @return  the day number
   */
  public int getDay();
  /**
   * Gets the hour number.
   *
   * @return  the hour number  
   */
  public int getHour();
  /**
   * Gets the minute number.
   *
   * @return  the minute number
   */
  public int getMinute();
  /**
   * Gets the second number.
   *
   * @return  the second number
   */
  public int getSecond();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.