Package com.google.refine.history

Examples of com.google.refine.history.HistoryEntry


        }
       
        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


            rowIndices,
            tuples,
            _removeOriginalColumn
        );
       
        return new HistoryEntry(
            historyEntryID, project, description, this, change);
    }
View Full Code Here

       
        List<Column> allColumns = new ArrayList<Column>(unchangedColumns);
        allColumns.addAll(newColumns);
        allColumns.addAll(newNoteColumns);
       
        return new HistoryEntry(
            historyEntryID,
            project,
            getBriefDescription(null),
            this,
            new MassRowColumnChange(allColumns, newRows)
View Full Code Here

            long historyEntryID) throws Exception {
        String description = "Save RDF schema skeleton";
       
        Change change = new RdfSchemaChange(_schema);
       
        return new HistoryEntry(historyEntryID, project, description,
                SaveRdfSchemaOperation.this, change);
    }
View Full Code Here

TOP

Related Classes of com.google.refine.history.HistoryEntry

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.