Revision: 5764
          http://jnode.svn.sourceforge.net/jnode/?rev=5764&view=rev
Author:   lsantha
Date:     2011-01-03 10:44:31 +0000 (Mon, 03 Jan 2011)

Log Message:
-----------
Javadoc fixes.

Modified Paths:
--------------
    trunk/builder/src/builder/org/jnode/linker/LoadUtil.java
    trunk/builder/src/builder/org/jnode/linker/Section.java
    trunk/builder/src/builder/org/jnode/linker/StoreUtil.java
    trunk/core/src/core/org/jnode/vm/compiler/IMTCompiler.java
    trunk/core/src/core/org/jnode/vm/facade/VmHeapManager.java
    trunk/core/src/core/org/jnode/vm/x86/VmX86Thread64.java
    trunk/core/src/core/org/jnode/vm/x86/compiler/BaseX86MagicHelper.java
    trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/Catalog.java

Modified: trunk/builder/src/builder/org/jnode/linker/LoadUtil.java
===================================================================
--- trunk/builder/src/builder/org/jnode/linker/LoadUtil.java    2011-01-03 
10:19:11 UTC (rev 5763)
+++ trunk/builder/src/builder/org/jnode/linker/LoadUtil.java    2011-01-03 
10:44:31 UTC (rev 5764)
@@ -195,7 +195,7 @@
      *
      * @param in
      * @param e_ident
-     * @return
+     * @return the address
      * @throws IOException
      */
     public static long loadAddr(RandomAccessFile in, byte[] e_ident)
@@ -212,7 +212,7 @@
      *
      * @param in
      * @param e_ident
-     * @return
+     * @return the address
      * @throws IOException
      */
     public static long loadAddr(InputStream in, byte[] e_ident)
@@ -229,7 +229,7 @@
      *
      * @param in
      * @param e_ident
-     * @return
+     * @return the offset
      * @throws IOException
      */
     public static long loadOff(RandomAccessFile in, byte[] e_ident)
@@ -246,7 +246,7 @@
      *
      * @param in
      * @param e_ident
-     * @return
+     * @return the offset
      * @throws IOException
      */
     public static long loadOff(InputStream in, byte[] e_ident)
@@ -263,7 +263,7 @@
      *
      * @param in
      * @param e_ident
-     * @return
+     * @return the xword
      * @throws IOException
      */
     public static long loadXword(RandomAccessFile in, byte[] e_ident)
@@ -275,12 +275,12 @@
         }
     }
 
-    /**
+    /**                                                                        
 Sc
      * Load an Xword.
      *
      * @param in
      * @param e_ident
-     * @return
+     * @return the xword
      * @throws IOException
      */
     public static long loadXword(InputStream in, byte[] e_ident)

Modified: trunk/builder/src/builder/org/jnode/linker/Section.java
===================================================================
--- trunk/builder/src/builder/org/jnode/linker/Section.java     2011-01-03 
10:19:11 UTC (rev 5763)
+++ trunk/builder/src/builder/org/jnode/linker/Section.java     2011-01-03 
10:44:31 UTC (rev 5764)
@@ -181,7 +181,7 @@
     /**
      * Gets the name of this section.
      *
-     * @return
+     * @return the name of this section
      */
     public String getName() {
         return elf.getSHString(sh_name);

Modified: trunk/builder/src/builder/org/jnode/linker/StoreUtil.java
===================================================================
--- trunk/builder/src/builder/org/jnode/linker/StoreUtil.java   2011-01-03 
10:19:11 UTC (rev 5763)
+++ trunk/builder/src/builder/org/jnode/linker/StoreUtil.java   2011-01-03 
10:44:31 UTC (rev 5764)
@@ -119,7 +119,7 @@
      * @param out
      * @param e_ident
      * @param address
-     * @return
+     * @return the number of bytes stored
      * @throws IOException
      */
     public static int storeAddr(OutputStream out, byte[] e_ident,
@@ -137,7 +137,7 @@
      * @param out
      * @param e_ident
      * @param off
-     * @return
+     * @return the number of bytes stored
      * @throws IOException
      */
     public static int storeOff(OutputStream out, byte[] e_ident,
@@ -155,7 +155,7 @@
      * @param out
      * @param e_ident
      * @param xword
-     * @return
+     * @return the number of bytes stored
      * @throws IOException
      */
     public static int storeXword(OutputStream out, byte[] e_ident,

Modified: trunk/core/src/core/org/jnode/vm/compiler/IMTCompiler.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/compiler/IMTCompiler.java  2011-01-03 
10:19:11 UTC (rev 5763)
+++ trunk/core/src/core/org/jnode/vm/compiler/IMTCompiler.java  2011-01-03 
10:44:31 UTC (rev 5764)
@@ -45,7 +45,7 @@
      * @param resolver
      * @param imt
      * @param imtCollisions
-     * @return
+     * @return the CompiledIMT instance
      */
     public abstract CompiledIMT compile(ObjectResolver resolver, Object[] imt, 
boolean[] imtCollisions);
 }

Modified: trunk/core/src/core/org/jnode/vm/facade/VmHeapManager.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/facade/VmHeapManager.java  2011-01-03 
10:19:11 UTC (rev 5763)
+++ trunk/core/src/core/org/jnode/vm/facade/VmHeapManager.java  2011-01-03 
10:44:31 UTC (rev 5764)
@@ -92,14 +92,14 @@
     /**
      * Get this heap's statistics.
      *
-     * @return
+     * @return the heap statistics
      */
     HeapStatistics getHeapStatistics();
 
     /**
      * Get this heap GC's statistics.
      *
-     * @return
+     * @return the heap GC statistics
      */
     GCStatistics getStatistics();
 

Modified: trunk/core/src/core/org/jnode/vm/x86/VmX86Thread64.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/VmX86Thread64.java     2011-01-03 
10:19:11 UTC (rev 5763)
+++ trunk/core/src/core/org/jnode/vm/x86/VmX86Thread64.java     2011-01-03 
10:44:31 UTC (rev 5764)
@@ -82,7 +82,7 @@
     }
 
     /**
-     * @see 
org.jnode.vm.scheduler.VmThread#accept(org.jnode.vm.facade.ObjectVisitor, 
org.jnode.vm.memmgr.VmHeapManager)
+     * @see 
org.jnode.vm.scheduler.VmThread#accept(org.jnode.vm.facade.ObjectVisitor, 
org.jnode.vm.facade.VmHeapManager)
      */
     public boolean accept(ObjectVisitor visitor, VmHeapManager heapManager) {
         if (!super.accept(visitor, heapManager)) {

Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/BaseX86MagicHelper.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/x86/compiler/BaseX86MagicHelper.java       
2011-01-03 10:19:11 UTC (rev 5763)
+++ trunk/core/src/core/org/jnode/vm/x86/compiler/BaseX86MagicHelper.java       
2011-01-03 10:44:31 UTC (rev 5764)
@@ -34,7 +34,7 @@
      * Convert a method code into an X86 condition code.
      *
      * @param mcode
-     * @return
+     * @return the x86 condition code
      */
     protected final int methodToCC(MagicMethod mcode) {
         switch (mcode) {
@@ -65,10 +65,10 @@
     }
 
     /**
-     * Convert a method code into an X86 condition code.
+     * Convert a method code into an x86 shift code.
      *
      * @param mcode
-     * @return
+     * @return the x86 shift code
      */
     protected final int methodToShift(MagicMethod mcode) {
         switch (mcode) {

Modified: trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/Catalog.java
===================================================================
--- trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/Catalog.java   2011-01-03 
10:19:11 UTC (rev 5763)
+++ trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/Catalog.java   2011-01-03 
10:44:31 UTC (rev 5764)
@@ -160,7 +160,7 @@
      * @param parentId
      * @param nodeId
      * @param nodeType
-     * @return
+     * @return the new node instance
      */
     public LeafRecord createNode(String filename, CatalogNodeId parentId, 
CatalogNodeId nodeId,
             int nodeType) throws IOException {


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Jnode-svn-commits mailing list
Jnode-svn-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jnode-svn-commits

Reply via email to