Package com.softsizo.data

Examples of com.softsizo.data.Change


        return false;
    }

    private void dumpChanges() {
        if(versionedFile!=null){
            Change change = new Change(changeSet, versionedFile, lineCount);
            this.changeSet.addChange(change);
            this.versionedFile.addChange(change);
        }
        this.lineCount = new LineCount();
        this.versionedFile = null;
View Full Code Here


public class UnitTestHelper {
   
    public static ChangeSet buildChangeSet(int revision, Author author,
            VersionedFile versionedFile, LineCount lineCount){
        ChangeSet changeSet = new ChangeSet(revision, author);
        Change change = new Change(changeSet,versionedFile, lineCount);
        changeSet.addChange(change);
        versionedFile.addChange(change);
        return changeSet;
    }
View Full Code Here

TOP

Related Classes of com.softsizo.data.Change

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.