Package org.evolizer.versioncontrol.cvs.model.entities

Examples of org.evolizer.versioncontrol.cvs.model.entities.Branch.addChild()


                copyRevisionNum,
                revisionNum);
        if (parentTag != null) {
            // If it's a sub branch, I link it to its parent and vice versa
            Branch parentBranch = fBranches.get(parentTag);
            parentBranch.addChild(branch);
            branch.setParent(parentBranch);
            LOGGER.debug(NLS.bind(MapperMessages.SVNModelMapper_isSubBranch, tag, parentBranch.getName()));
        }
        return branch;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.