de.tsl2.nano.fi.FIDate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.common Show documentation
Show all versions of tsl2.nano.common Show documentation
TSL2 Framework Commons (Collections, Actions/Excecution, Readers, Xml, Print, Mail, FuzzyFinder, Proxies, Network-Structure)
/*
* File: $HeadURL$
* Id : $Id$
*
* created by: Thomas Schneider
* created on: Jun 29, 2012
*
* Copyright: (c) Thomas Schneider 2012, all rights reserved
*/
package de.tsl2.nano.fi;
/**
*
* @author Thomas Schneider
* @version $Revision$
*/
public class FIDate {
T callback;
/**
* constructor
*/
public FIDate(T callback) {
this.callback = callback;
}
public T today() {
return callback;
}
public T add() {
return callback;
}
}