Package com.google.refine.model.changes

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


        }
        if (project.columnModel.getColumnByName(_newColumnName) != null) {
            throw new Exception("Another column already named " + _newColumnName);
        }
       
        Change change = new ColumnRenameChange(_oldColumnName, _newColumnName);
       
        return new HistoryEntry(historyEntryID, project, getBriefDescription(null), ColumnRenameOperation.this, change);
    }
View Full Code Here

TOP

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

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.