Examples of MassChange


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

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

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

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

       
        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
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.