Fix javadoc -- change code to pre

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@702985 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-10-08 20:44:00 +00:00
parent 9bc4c5cba3
commit 9607acc45e
1 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ import org.apache.hadoop.util.StringUtils;
* Subclasses may use other TableRecordReader implementations.
* <p>
* An example of a subclass:
* <code>
* <pre>
* class ExampleTIF extends TableInputFormatBase implements JobConfigurable {
*
* public void configure(JobConf job) {
@ -70,7 +70,7 @@ import org.apache.hadoop.util.StringUtils;
* public void validateInput(JobConf job) throws IOException {
* }
* }
* </code>
* </pre>
*/
public abstract class TableInputFormatBase
implements InputFormat<ImmutableBytesWritable, RowResult> {
@ -334,4 +334,4 @@ implements InputFormat<ImmutableBytesWritable, RowResult> {
protected void setRowFilter(RowFilterInterface rowFilter) {
this.rowFilter = rowFilter;
}
}
}