Package com.softsizo.data

Examples of com.softsizo.data.ChangeSet.addChange()


   
    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;
    }
   
    public static String readFile(String filename) throws IOException {
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.