Back to project page baracus-framework.
The source code is released under:
Apache License
If you think the Android project baracus-framework listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.mantucon.baracus.orm; /*w w w .j av a 2s .com*/ import java.util.Date; /** * Created with IntelliJ IDEA. * User: marcus * Date: 24.09.12 * Time: 07:32 * <p/> * Indicates an entity bean carrying a modification timestamp */ public interface Timestamped { public Date getCreationDate(); public Date getLastModificationDate(); public void setCreationDate(Date date); public void setLastModificationDate(Date date); }