com.rapiddweller.common.Dated Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rd-lib-common Show documentation
Show all versions of rd-lib-common Show documentation
'rapiddweller Common' is an open source Java library
forked from Databene Commons by Volker Bergmann.
It provides extensions to the Java core library by utility classes, abstract concepts
and concrete implementations.
/* (c) Copyright 2013 by Volker Bergmann. All rights reserved. */
package com.rapiddweller.common;
import java.util.Date;
/**
* Interface for classes with a {@link #getDate()} method.
* Created: 03.11.2013 23:37:51
*
* @author Volker Bergmann
* @since 1.0
*/
public interface Dated {
/**
* Gets date.
*
* @return the date
*/
Date getDate();
}