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

com.github.danielflower.mavenplugins.gitlog.renderers.ChangeLogRenderer Maven / Gradle / Ivy

package com.github.danielflower.mavenplugins.gitlog.renderers;

import org.eclipse.jgit.revwalk.RevCommit;
import org.eclipse.jgit.revwalk.RevTag;

import java.io.IOException;

public interface ChangeLogRenderer {

	public void renderHeader(String reportTitle) throws IOException;

	public void renderTag(RevTag tag) throws IOException;

	public void renderCommit(RevCommit commit) throws IOException;

	public void renderFooter() throws IOException;

	public void close();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy