All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.dbdoc.ColumnWriter Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.dbdoc;

import liquibase.change.Change;
import liquibase.database.Database;
import liquibase.resource.Resource;

import java.io.IOException;
import java.io.Writer;
import java.util.List;

public class ColumnWriter extends HTMLWriter {


    public ColumnWriter(Resource rootOutputDir, Database database) {
        super(rootOutputDir.resolve("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 {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy