Package com.google.refine.process

Examples of com.google.refine.process.QuickHistoryEntryProcess


*  An abstract operation can be applied to different but similar
*  projects.
*/
abstract public class AbstractOperation implements Jsonizable {
    public Process createProcess(Project project, Properties options) throws Exception {
        return new QuickHistoryEntryProcess(project, getBriefDescription(null)) {
            @Override
            protected HistoryEntry createHistoryEntry(long historyEntryID) throws Exception {
                return AbstractOperation.this.createHistoryEntry(_project, historyEntryID);
            }
        };
View Full Code Here

TOP

Related Classes of com.google.refine.process.QuickHistoryEntryProcess

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.