Package com.aragost.javahg.internals

Examples of com.aragost.javahg.internals.AddRemoveCommandHelper


     * @param repository
     *            the repository associated with this command.
     */
    public AddCommand(Repository repository) {
        super(repository);
        helper = new AddRemoveCommandHelper(this, "adding ");
        withDebugFlag();
    }
View Full Code Here


     * @param repository
     *            the repository associated with this command.
     */
    public RemoveCommand(Repository repository) {
        super(repository);
        helper = new AddRemoveCommandHelper(this, "removing ");
        withDebugFlag();
    }
View Full Code Here

TOP

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

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.