Prep. for RC -- fix javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@799122 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-07-29 23:25:26 +00:00
parent 4267838a0c
commit 47b898d037
3 changed files with 8 additions and 7 deletions

View File

@ -18,7 +18,7 @@
--> -->
<project name="hbase" default="jar"> <project name="hbase" default="jar">
<property name="version" value="0.20.0-dev"/> <property name="version" value="0.20.0"/>
<property name="Name" value="HBase"/> <property name="Name" value="HBase"/>
<property name="final.name" value="hbase-${version}"/> <property name="final.name" value="hbase-${version}"/>
<property name="year" value="2009"/> <property name="year" value="2009"/>
@ -422,6 +422,7 @@
<packageset dir="${src.dir}"> <packageset dir="${src.dir}">
<include name="org/apache/**"/> <include name="org/apache/**"/>
<exclude name="org/onelab/**"/> <exclude name="org/onelab/**"/>
<exclude name="org/apache/hadoop/hbase/thrift/generated/**"/>
</packageset> </packageset>
<link href="${javadoc.link.java}"/> <link href="${javadoc.link.java}"/>
<classpath > <classpath >

View File

@ -144,7 +144,7 @@ public class Store implements HConstants, HeapSize {
* Constructor * Constructor
* @param basedir qualified path under which the region directory lives; * @param basedir qualified path under which the region directory lives;
* generally the table subdirectory * generally the table subdirectory
* @param info HRegionInfo for this region * @param region
* @param family HColumnDescriptor for this column * @param family HColumnDescriptor for this column
* @param fs file system object * @param fs file system object
* @param reconstructionLog existing log file to apply if any * @param reconstructionLog existing log file to apply if any
@ -1716,4 +1716,4 @@ public class Store implements HConstants, HeapSize {
public long heapSize() { public long heapSize() {
return DEEP_OVERHEAD + this.memstore.heapSize(); return DEEP_OVERHEAD + this.memstore.heapSize();
} }
} }

View File

@ -40,10 +40,10 @@ to migrate Thrift into Apache Incubator.
<h2><a name="description">Description</a></h2> <h2><a name="description">Description</a></h2>
<p>The <a href="generated/Hbase.Iface.html">Hbase API</a> is defined in the <p>The <a href="generated/Hbase.Iface.html">Hbase API</a> is defined in the
file Hbase.thrift. A server-side implementation of the API is in {@link file Hbase.thrift. A server-side implementation of the API is in
org.apache.hadoop.hbase.thrift.ThriftServer}. The generated interfaces, <code>org.apache.hadoop.hbase.thrift.ThriftServer</code>. The generated interfaces,
types, and RPC utility files are checked into SVN under the {@link types, and RPC utility files are checked into SVN under the
org.apache.hadoop.hbase.thrift.generated} directory. <code>org.apache.hadoop.hbase.thrift.generated</code> directory.
</p> </p>