Package org.apache.subversion.javahl.types

Examples of org.apache.subversion.javahl.types.LogDate


    /** 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;
    }
View Full Code Here


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

    /** 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;
    }
View Full Code Here

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

TOP

Related Classes of org.apache.subversion.javahl.types.LogDate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.