RandomSec/src/main/java/com/metaweb/gridworks/importers/parsers/RowParser.java
David Huynh f7e830e709 Fixed bug in which editing a single cell and then starring the same row seemed to revert the cell back to its original content.
Added an option for not guessing cell value type during import.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@446 7d457c2a-affb-35e4-300a-418c747d4874
2010-04-11 21:54:56 +00:00

12 lines
293 B
Java

package com.metaweb.gridworks.importers.parsers;
import java.util.List;
import com.metaweb.gridworks.model.Row;
public abstract class RowParser {
public abstract List<String> split(String line);
public abstract boolean parseRow(Row row, String line, boolean guessValueType);
}