Package com.google.refine.model.changes

Examples of com.google.refine.model.changes.MassChange


        return new HistoryEntry(
            historyEntryID,
            project,
            (_starred ? "Star" : "Unstar") + " " + changes.size() + " rows",
            this,
            new MassChange(changes, false)
        );
    }
View Full Code Here


        return new HistoryEntry(
            historyEntryID,
            project,
            (_flagged ? "Flag" : "Unflag") + " " + changes.size() + " rows",
            this,
            new MassChange(changes, false)
        );
    }
View Full Code Here

       
        String description = "Copy " + cellChanges.size() + " recon judgments from column " +
            _fromColumnName + " to " + StringUtils.join(_toColumnNames);
       
        return new HistoryEntry(
            historyEntryID, project, description, this, new MassChange(cellChanges, false));
    }
View Full Code Here

TOP

Related Classes of com.google.refine.model.changes.MassChange

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.