HBASE-464 HBASE-419 introduced javadoc errors

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@630556 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bryan Duxbury 2008-02-24 00:36:10 +00:00
parent dcbc0773fc
commit 8e6a233085
7 changed files with 9 additions and 6 deletions

View File

@ -61,6 +61,9 @@ Hbase Change Log
HBASE-79 When HBase needs to be migrated, it should display a message on
stdout, not just in the logs
HBASE-461 Simplify leases.
HBASE-419 Move RegionServer and related classes into regionserver package
HBASE-457 Factor Master into Master, RegionManager, and ServerManager
HBASE-464 HBASE-419 introduced javadoc errors
Branch 0.1

View File

@ -85,7 +85,7 @@ public class GroupingTableMap extends TableMap<Text,MapWritable> {
* Pass the new key and value to reduce.
* If any of the grouping columns are not found in the value, the record is skipped.
*
* @see org.apache.hadoop.hbase.mapred.TableMap#map(org.apache.hadoop.hbase.HStoreKey, org.apache.hadoop.io.MapWritable, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)
* @see org.apache.hadoop.hbase.mapred.TableMap#map(org.apache.hadoop.hbase.regionserver.HStoreKey, org.apache.hadoop.io.MapWritable, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)
*/
@Override
public void map(@SuppressWarnings("unused") HStoreKey key,

View File

@ -41,7 +41,7 @@ public class IdentityTableMap extends TableMap<Text, MapWritable> {
/**
* Pass the key, value to reduce
*
* @see org.apache.hadoop.hbase.mapred.TableMap#map(org.apache.hadoop.hbase.HStoreKey, org.apache.hadoop.io.MapWritable, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)
* @see org.apache.hadoop.hbase.mapred.TableMap#map(org.apache.hadoop.hbase.regionserver.HStoreKey, org.apache.hadoop.io.MapWritable, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)
*/
@Override
public void map(HStoreKey key, MapWritable value,

View File

@ -53,7 +53,7 @@ implements InputFormat<HStoreKey, MapWritable>, JobConfigurable {
/**
* space delimited list of columns
* @see org.apache.hadoop.hbase.HAbstractScanner for column name wildcards
* @see org.apache.hadoop.hbase.regionserver.HAbstractScanner for column name wildcards
*/
public static final String COLUMN_LIST = "hbase.mapred.tablecolumns";

View File

@ -200,7 +200,7 @@ public abstract class HAbstractScanner implements HInternalScannerInterface {
* @return true if a match was found
* @throws IOException
*
* @see org.apache.hadoop.hbase.HScannerInterface#next(org.apache.hadoop.hbase.HStoreKey, java.util.SortedMap)
* @see org.apache.hadoop.hbase.HScannerInterface#next(org.apache.hadoop.hbase.regionserver.HStoreKey, java.util.SortedMap)
*/
public boolean next(HStoreKey key, SortedMap<Text, byte []> results)
throws IOException {

View File

@ -707,7 +707,7 @@ public class HRegion implements HConstants {
/**
* Only do a compaction if it is necessary
*
* @return
* @return whether or not there was a compaction
* @throws IOException
*/
public boolean compactIfNeeded() throws IOException {

View File

@ -987,7 +987,7 @@ public class HRegionServer implements HConstants, HRegionInterface, Runnable {
/**
* Sets a flag that will cause all the HRegionServer threads to shut down
* in an orderly fashion. Used by unit tests and called by {@link Flusher}
* in an orderly fashion. Used by unit tests and called by Flusher
* if it judges server needs to be restarted.
*/
public synchronized void stop() {