fitnesse.wiki.fs.FileVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
package fitnesse.wiki.fs;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Date;
/**
* Represents a file under version control.
*/
public interface FileVersion {
File getFile();
InputStream getContent() throws IOException;
String getAuthor();
Date getLastModificationTime();
}