Package com.google.refine.model.changes

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


        }
        if (_index < 0 || _index >= project.columnModel.columns.size()) {
            throw new Exception("New column index out of range " + _index);
        }
       
        Change change = new ColumnMoveChange(_columnName, _index);
       
        return new HistoryEntry(historyEntryID, project, getBriefDescription(null), ColumnMoveOperation.this, change);
    }
View Full Code Here

TOP

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

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.