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();
}
|