From: <ls...@us...> - 2010-12-27 21:02:44
|
Revision: 5762 http://jnode.svn.sourceforge.net/jnode/?rev=5762&view=rev Author: lsantha Date: 2010-12-27 21:02:37 +0000 (Mon, 27 Dec 2010) Log Message: ----------- Javadoc fixes. Modified Paths: -------------- trunk/all/build.xml trunk/builder/src/builder/org/jnode/linker/Elf.java trunk/core/src/core/org/jnode/vm/VmMagic.java Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2010-12-27 18:48:53 UTC (rev 5761) +++ trunk/all/build.xml 2010-12-27 21:02:37 UTC (rev 5762) @@ -727,6 +727,7 @@ <pathelement location="${root.dir}/core/src/openjdk/vm"/> <pathelement location="${root.dir}/core/src/core"/> <pathelement location="${root.dir}/core/src/driver"/> + <pathelement location="${root.dir}/core/src/emu"/> <pathelement location="${root.dir}/core/src/mmtk-vm"/> <pathelement location="${root.dir}/core/src/endorsed/nanoxml"/> <pathelement location="${root.dir}/core/src/test"/> Modified: trunk/builder/src/builder/org/jnode/linker/Elf.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/Elf.java 2010-12-27 18:48:53 UTC (rev 5761) +++ trunk/builder/src/builder/org/jnode/linker/Elf.java 2010-12-27 21:02:37 UTC (rev 5762) @@ -282,7 +282,7 @@ /** * Does this elf file contain 32-bit objects. * - * @return + * @return true is the file contains 32-bit objects */ public boolean isClass32() { return (e_ident[EI_CLASS] == ELFCLASS32); @@ -291,7 +291,7 @@ /** * Does this elf file contain 64-bit objects. * - * @return + * @return true is the file contains 64-bit objects */ public boolean isClass64() { return (e_ident[EI_CLASS] == ELFCLASS64); @@ -300,7 +300,7 @@ /** * Gets the entry point address. * - * @return + * @return the address */ public long getEntry() { return e_entry; Modified: trunk/core/src/core/org/jnode/vm/VmMagic.java =================================================================== --- trunk/core/src/core/org/jnode/vm/VmMagic.java 2010-12-27 18:48:53 UTC (rev 5761) +++ trunk/core/src/core/org/jnode/vm/VmMagic.java 2010-12-27 21:02:37 UTC (rev 5762) @@ -34,11 +34,12 @@ * bodies are not used. * <p/> * Methods in this class can also be called from inside JNode. + * <p/> + * See {@link org.jnode.vm.classmgr.VmType VmType} to get the list of "magic" classes and + * {@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod MagicMethod} + * to get the list of "magic" methods. * * @author Ewout Prangsma (ep...@us...) - * @see {@link org.jnode.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 */ @MagicPermission public final class VmMagic { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |