Package com.google.refine.model.changes

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


            return new HistoryEntry(
                historyEntryID,
                _project,
                (starred ? "Star row " : "Unstar row ") + (rowIndex + 1),
                null,
                new RowStarChange(rowIndex, starred)
            );
        }
View Full Code Here


            }
           
            @Override
            public boolean visit(Project project, int rowIndex, Row row) {
                if (row.starred != _starred) {
                    RowStarChange change = new RowStarChange(rowIndex, _starred);
                   
                    changes.add(change);
                }
                return false;
            }
View Full Code Here

TOP

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

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.