/*
* This file is part of ZSE Info.
*
* ZSE Info is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* any later version.
*
* ZSE Info is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Foobar; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.enbyted.android.zseinfo.data.lucky;
import java.util.Calendar;
/**
* Created by Bartosz Grabias on 23.02.14.
*/
public abstract class LuckyHandler {
public abstract void update();
public abstract int getLuckyNumber();
public abstract Calendar getWhenNumberIsLucky(int number);
public abstract String getType();
}