Package com.aragost.javahg.internals

Examples of com.aragost.javahg.internals.ExtraLogCommand


     *
     * @return Mercurial's extra dictionary
     */
    public synchronized Extra getExtra() {
        if (this.extra == null) {
            ExtraLogCommand cmd = new ExtraLogCommand(getRepository());
            cmd.rev(getNode());
            this.extra = new Extra(cmd.execute());
        }
        return this.extra;
    }
View Full Code Here

TOP

Related Classes of com.aragost.javahg.internals.ExtraLogCommand

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.