SF.net SVN: jikesrvm:[15729] rvmroot/trunk/MMTk/harness/src/org/mmtk/ harness/lang/UnsyncStack.java

View: New views
1 Messages — Rating Filter:   Alert me  

SF.net SVN: jikesrvm:[15729] rvmroot/trunk/MMTk/harness/src/org/mmtk/ harness/lang/UnsyncStack.java

by rgarner :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Revision: 15729
          http://jikesrvm.svn.sourceforge.net/jikesrvm/?rev=15729&view=rev
Author:   rgarner
Date:     2009-07-21 03:59:52 +0000 (Tue, 21 Jul 2009)

Log Message:
-----------
Javadoc improvements

Modified Paths:
--------------
    rvmroot/trunk/MMTk/harness/src/org/mmtk/harness/lang/UnsyncStack.java

Modified: rvmroot/trunk/MMTk/harness/src/org/mmtk/harness/lang/UnsyncStack.java
===================================================================
--- rvmroot/trunk/MMTk/harness/src/org/mmtk/harness/lang/UnsyncStack.java 2009-07-21 03:43:26 UTC (rev 15728)
+++ rvmroot/trunk/MMTk/harness/src/org/mmtk/harness/lang/UnsyncStack.java 2009-07-21 03:59:52 UTC (rev 15729)
@@ -28,8 +28,8 @@
 
   /**
    * Push to the top of the stack
-   * @param value
-   * @return
+   * @param value Value to push
+   * @return The value
    */
   public E push(E value) {
     elements.add(value);
@@ -38,7 +38,7 @@
 
   /**
    * Pop off the stack
-   * @return
+   * @return The value at the top of the stack
    */
   public E pop() {
     return elements.remove(elements.size()-1);
@@ -46,7 +46,7 @@
 
   /**
    * Look at the top element
-   * @return
+   * @return The value at the top of the stack
    */
   public E peek() {
     return elements.get(elements.size()-1);
@@ -54,7 +54,7 @@
 
   /**
    * # elements in the stack.
-   * @return
+   * @return The number of elements in the list
    */
   public int size() {
     return elements.size();
@@ -62,7 +62,7 @@
 
   /**
    * Are there any elements in the stack ?
-   * @return
+   * @return True is the stack is empty
    */
   public boolean isEmpty() {
     return size() == 0;


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

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Jikesrvm-commits mailing list
Jikesrvm-commits@...
https://lists.sourceforge.net/lists/listinfo/jikesrvm-commits