javaee.module.backend.entities.logger.AbstractLoggerHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-javaee-module Show documentation
Show all versions of common-javaee-module Show documentation
This Module contains common JavaEE Helper Classes.
The newest version!
package javaee.module.backend.entities.logger;
import java.util.Date;
public abstract class AbstractLoggerHelper extends AbstractLoggerHelperParent_2 {
public void setDate( Date date ) {
this.date = date;
}
public void setDescription( String description ) {
this.description = description;
}
}