Add Javadoc
git-svn-id: http://google-refine.googlecode.com/svn/trunk@2318 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
da0e68dd76
commit
16421303cb
@ -53,6 +53,9 @@ import com.google.refine.util.JSONUtilities;
|
||||
abstract public class ImportingParserBase implements ImportingParser {
|
||||
final protected boolean useInputStream;
|
||||
|
||||
/**
|
||||
* @param useInputStream true if parser takes an InputStream, false if it takes a Reader.
|
||||
*/
|
||||
protected ImportingParserBase(boolean useInputStream) {
|
||||
this.useInputStream = useInputStream;
|
||||
}
|
||||
|
@ -70,6 +70,10 @@ abstract public class TabularImportingParserBase extends ImportingParserBase {
|
||||
return options;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param useInputStream true if parser takes an InputStream, false if it takes a Reader.
|
||||
*
|
||||
*/
|
||||
protected TabularImportingParserBase(boolean useInputStream) {
|
||||
super(useInputStream);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user