Revision: 5763
          http://jnode.svn.sourceforge.net/jnode/?rev=5763&view=rev
Author:   lsantha
Date:     2011-01-03 10:19:11 +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/StoreUtil.java
    trunk/builder/src/configure/org/jnode/configure/PatternType.java
    trunk/core/src/classlib/org/jnode/java/io/VMFileSystemAPI.java
    trunk/core/src/core/org/jnode/vm/facade/Vm.java
    trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/Address.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/AddressArray.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/Extent.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/ExtentArray.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReference.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReferenceArray.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/Offset.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/OffsetArray.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/Word.java
    trunk/core/src/vmmagic/org/vmmagic/unboxed/WordArray.java
    trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java
    trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java
    trunk/gui/src/driver/org/jnode/driver/ps2/PS2Bus.java
    trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java
    trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java
    trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java
    trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java

Modified: trunk/builder/src/builder/org/jnode/linker/LoadUtil.java
===================================================================
--- trunk/builder/src/builder/org/jnode/linker/LoadUtil.java    2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/builder/src/builder/org/jnode/linker/LoadUtil.java    2011-01-03 
10:19:11 UTC (rev 5763)
@@ -193,7 +193,7 @@
     /**
      * Load a program address.
      *
-     * @param out
+     * @param in
      * @param e_ident
      * @return
      * @throws IOException
@@ -210,7 +210,7 @@
     /**
      * Load a program address.
      *
-     * @param out
+     * @param in
      * @param e_ident
      * @return
      * @throws IOException
@@ -227,7 +227,7 @@
     /**
      * Load a file offset.
      *
-     * @param out
+     * @param in
      * @param e_ident
      * @return
      * @throws IOException
@@ -244,7 +244,7 @@
     /**
      * Load a file offset.
      *
-     * @param out
+     * @param in
      * @param e_ident
      * @return
      * @throws IOException
@@ -261,7 +261,7 @@
     /**
      * Load an Xword.
      *
-     * @param out
+     * @param in
      * @param e_ident
      * @return
      * @throws IOException
@@ -278,7 +278,7 @@
     /**
      * Load an Xword.
      *
-     * @param out
+     * @param in
      * @param e_ident
      * @return
      * @throws IOException

Modified: trunk/builder/src/builder/org/jnode/linker/StoreUtil.java
===================================================================
--- trunk/builder/src/builder/org/jnode/linker/StoreUtil.java   2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/builder/src/builder/org/jnode/linker/StoreUtil.java   2011-01-03 
10:19:11 UTC (rev 5763)
@@ -136,7 +136,7 @@
      *
      * @param out
      * @param e_ident
-     * @param address
+     * @param off
      * @return
      * @throws IOException
      */
@@ -154,7 +154,7 @@
      *
      * @param out
      * @param e_ident
-     * @param address
+     * @param xword
      * @return
      * @throws IOException
      */

Modified: trunk/builder/src/configure/org/jnode/configure/PatternType.java
===================================================================
--- trunk/builder/src/configure/org/jnode/configure/PatternType.java    
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/builder/src/configure/org/jnode/configure/PatternType.java    
2011-01-03 10:19:11 UTC (rev 5763)
@@ -29,7 +29,7 @@
  * This class represents a property type defined by a regex. The constructor
  * allows you to provide an "emptyToken" value. If provided, this value defines
  * a special token that will be mapped to the empty string by the
- * {...@link fromToken} method.
+ * {...@link #fromValue(String)} method.
  * 
  * @author craw...@jnode.org
  */

Modified: trunk/core/src/classlib/org/jnode/java/io/VMFileSystemAPI.java
===================================================================
--- trunk/core/src/classlib/org/jnode/java/io/VMFileSystemAPI.java      
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/core/src/classlib/org/jnode/java/io/VMFileSystemAPI.java      
2011-01-03 10:19:11 UTC (rev 5763)
@@ -29,7 +29,8 @@
  * filesystem services.
  * The file paths given to the various methods are absolute and canonical.
  * 
- * @modif  add mkDir mkFile   Yves Galante (yves.gala...@jmob.net) 01.04.2004
+ * Modified:  add mkDir mkFile   Yves Galante (yves.gala...@jmob.net) 
01.04.2004
+ *
  * @author epr
  */
 public interface VMFileSystemAPI {

Modified: trunk/core/src/core/org/jnode/vm/facade/Vm.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/facade/Vm.java     2010-12-27 21:02:37 UTC 
(rev 5762)
+++ trunk/core/src/core/org/jnode/vm/facade/Vm.java     2011-01-03 10:19:11 UTC 
(rev 5763)
@@ -51,7 +51,7 @@
      * @param name
      * @return The counter
      */
-    Counter getCounter(String string);
+    Counter getCounter(String name);
 
     /**
      * Gets or creates a counter group with a given name.

Modified: trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java
===================================================================
--- trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java 
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java 
2011-01-03 10:19:11 UTC (rev 5763)
@@ -468,7 +468,7 @@
     }
     
     /**
-     * @see 
org.jnode.vm.memmgr.VmHeapManager#createProcessorHeapData(org.jnode.vm.scheduler.VmProcessor)
+     * @see 
org.jnode.vm.memmgr.VmHeapManager#createProcessorHeapData(org.jnode.vm.facade.VmProcessor)
      */
     public Object createProcessorHeapData(VmProcessor cpu) {
         // No need here, so return null.

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/Address.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/Address.java     2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/Address.java     2011-01-03 
10:19:11 UTC (rev 5763)
@@ -24,8 +24,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/AddressArray.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/AddressArray.java        
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/AddressArray.java        
2011-01-03 10:19:11 UTC (rev 5763)
@@ -17,8 +17,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/Extent.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/Extent.java      2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/Extent.java      2011-01-03 
10:19:11 UTC (rev 5763)
@@ -17,8 +17,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/ExtentArray.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/ExtentArray.java 2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/ExtentArray.java 2011-01-03 
10:19:11 UTC (rev 5763)
@@ -17,8 +17,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReference.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReference.java     
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReference.java     
2011-01-03 10:19:11 UTC (rev 5763)
@@ -27,8 +27,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReferenceArray.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReferenceArray.java        
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/ObjectReferenceArray.java        
2011-01-03 10:19:11 UTC (rev 5763)
@@ -17,8 +17,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/Offset.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/Offset.java      2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/Offset.java      2011-01-03 
10:19:11 UTC (rev 5763)
@@ -18,8 +18,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Ewout Prangsma (e...@users.sourceforge.net)
  * @author Daniel Frampton

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/OffsetArray.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/OffsetArray.java 2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/OffsetArray.java 2011-01-03 
10:19:11 UTC (rev 5763)
@@ -17,8 +17,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/Word.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/Word.java        2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/Word.java        2011-01-03 
10:19:11 UTC (rev 5763)
@@ -21,8 +21,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * and see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
  * to get the list of "magic" methods
  * @author Ewout Prangsma (e...@users.sourceforge.net)
  * @author Daniel Frampton

Modified: trunk/core/src/vmmagic/org/vmmagic/unboxed/WordArray.java
===================================================================
--- trunk/core/src/vmmagic/org/vmmagic/unboxed/WordArray.java   2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/core/src/vmmagic/org/vmmagic/unboxed/WordArray.java   2011-01-03 
10:19:11 UTC (rev 5763)
@@ -17,8 +17,8 @@
  * <u>JNode specific notes</u> : This class contains some "magic"
  * methods that are interpreted by the VM itself, instead of being executed
  * as normal java methods.  <b>The actual method bodies are never used</b>.
- * @see {...@link org.jnode.classmgr.VmType VmType} to get the list of "magic" 
classes
- * @see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod 
MagicMethod}
+ * See {...@link org.jnode.vm.classmgr.VmType VmType} to get the list of 
"magic" classes
+ * see {...@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod MagicMethod}
  * to get the list of "magic" methods
  * @author Daniel Frampton
  */

Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java
===================================================================
--- trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java   
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java   
2011-01-03 10:19:11 UTC (rev 5763)
@@ -493,7 +493,7 @@
 
     /**
      * @param irq
-     * @see org.jnode.system.IRQHandler#handleInterrupt(int)
+     * @see org.jnode.system.resource.IRQHandler#handleInterrupt(int)
      */
     public void handleInterrupt(int irq) {
         final FloppyCommand cmd = currentCommand;

Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java
===================================================================
--- trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java  2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java  2011-01-03 
10:19:11 UTC (rev 5763)
@@ -82,7 +82,7 @@
 
     /**
      * @param irq
-     * @see org.jnode.system.IRQHandler#handleInterrupt(int)
+     * @see org.jnode.system.resource.IRQHandler#handleInterrupt(int)
      */
     public void handleInterrupt(int irq);
 

Modified: trunk/gui/src/driver/org/jnode/driver/ps2/PS2Bus.java
===================================================================
--- trunk/gui/src/driver/org/jnode/driver/ps2/PS2Bus.java       2010-12-27 
21:02:37 UTC (rev 5762)
+++ trunk/gui/src/driver/org/jnode/driver/ps2/PS2Bus.java       2011-01-03 
10:19:11 UTC (rev 5763)
@@ -107,7 +107,7 @@
     /**
      * Handles a PS/2 interrupt
      * 
-     * @see org.jnode.system.IRQHandler#handleInterrupt(int)
+     * @see org.jnode.system.resource.IRQHandler#handleInterrupt(int)
      */
     public final synchronized void handleInterrupt(int irq) {
         processQueues();

Modified: trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java
===================================================================
--- trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java       
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java       
2011-01-03 10:19:11 UTC (rev 5763)
@@ -41,7 +41,7 @@
     }
 
     /**
-     * @see org.jnode.system.IRQHandler#handleInterrupt(int)
+     * @see org.jnode.system.resource.IRQHandler#handleInterrupt(int)
      */
     public void handleScancode(int b) {
         queue.enQueue((byte) b);

Modified: trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java
===================================================================
--- trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java    
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java    
2011-01-03 10:19:11 UTC (rev 5763)
@@ -321,7 +321,7 @@
     }
 
     /**
-     * @see org.jnode.system.IRQHandler#handleInterrupt(int)
+     * @see org.jnode.system.resource.IRQHandler#handleInterrupt(int)
      */
     public synchronized void handleInterrupt(int irq) {
 

Modified: trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java
===================================================================
--- trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java      
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java      
2011-01-03 10:19:11 UTC (rev 5763)
@@ -283,7 +283,7 @@
     }
 
     /**
-     * @see org.jnode.system.IRQHandler#handleInterrupt(int)
+     * @see org.jnode.system.resource.IRQHandler#handleInterrupt(int)
      */
     public void handleInterrupt(int irq) {
         while ((io.getCSR(0) & CSR0_INTR) != 0) {

Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java
===================================================================
--- trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java    
2010-12-27 21:02:37 UTC (rev 5762)
+++ trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java    
2011-01-03 10:19:11 UTC (rev 5763)
@@ -287,7 +287,7 @@
     }
 
     /**
-     * @see org.jnode.system.IRQHandler#handleInterrupt(int)
+     * @see org.jnode.system.resource.IRQHandler#handleInterrupt(int)
      */
     public synchronized void handleInterrupt(int irq) {
 


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