Move documentation to Javadoc where it's visible

This commit is contained in:
Tom Morris 2013-06-22 16:27:18 -04:00
parent 6e88d068ee
commit fd58bd3327

View File

@ -41,13 +41,30 @@ import com.google.refine.model.Row;
* particular criteria, such as facets' constraints. * particular criteria, such as facets' constraints.
*/ */
public interface RowVisitor { public interface RowVisitor {
public void start(Project project); // called before any visit() call
/**
* Called before any visit() call.
*
* @param project
*/
public void start(Project project);
/**
* @param project project
* @param rowIndex zero-based row index
* @param row row
* @return true to abort visitation early - no further visit calls will be made
*/
public boolean visit( public boolean visit(
Project project, Project project,
int rowIndex, // zero-based row index int rowIndex,
Row row Row row
); );
public void end(Project project); // called after all visit() calls /**
* Called after all visit() calls.
*
* @param project
*/
public void end(Project project);
} }