Package com.google.refine.model.changes

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


                HistoryEntry historyEntry = new HistoryEntry(
                    _historyEntryID,
                    _project,
                    _description,
                    ColumnAdditionByFetchingURLsOperation.this,
                    new ColumnAdditionChange(
                        _newColumnName,
                        _columnInsertIndex,
                        responseBodies)
                );
               
View Full Code Here


        FilteredRows filteredRows = engine.getAllFilteredRows();
        filteredRows.accept(project, createRowVisitor(project, cellsAtRows));
       
        String description = createDescription(column, cellsAtRows);
       
        Change change = new ColumnAdditionChange(_newColumnName, _columnInsertIndex, cellsAtRows);
       
        return new HistoryEntry(
            historyEntryID, project, description, this, change);
    }
View Full Code Here

TOP

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

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.