liquibase.dbdoc.ColumnWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.dbdoc;
import liquibase.change.Change;
import liquibase.database.Database;
import java.io.File;
import java.io.IOException;
import java.io.Writer;
import java.util.List;
public class ColumnWriter extends HTMLWriter {
public ColumnWriter(File rootOutputDir, Database database) {
super(new File(rootOutputDir, "columns"), database);
}
@Override
protected String createTitle(Object object) {
return "Changes affecting column \""+object.toString() + "\"";
}
@Override
protected void writeCustomHTML(Writer fileWriter, Object object, List changes, Database database) throws IOException {
}
}