/** This constructor will be only called from the jni code. */
public CommitInfo(long rev, String d, String a, String pce, String rr)
throws java.text.ParseException
{
revision = rev;
date = (new LogDate(d)).getDate();
author = a;
postCommitError = pce;
reposRoot = rr;
}