gate.code.DaoGenerator.dao().gtf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gate Show documentation
Show all versions of gate Show documentation
A multipurpose java library
package ${@dao.getPackageName()};
import gate.base.Dao;
import ${className};
import gate.error.AppException;
import gate.error.ConstraintViolationException;
import gate.error.NotFoundException;
import gate.sql.Link;
import gate.sql.condition.Condition;
import gate.sql.select.Select;
import gate.sql.delete.Delete;
import gate.sql.insert.Insert;
import gate.sql.update.Update;
import ${id.getClassName()};
import java.util.List;
public class ${@dao.getName()} extends Dao
{
public ${@dao.getName()}()
{
super();
}
public ${@dao.getName()}(Link link)
{
super(link);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy