Author: edwardyoon
Date: Mon Aug 11 08:02:56 2008
New Revision: 684768
URL: http://svn.apache.org/viewvc?rev=684768&view=rev
Log: (empty)
Modified:
incubator/hama/trunk/src/java/org/apache/hama/VectorInterface.java
Modified: incubator/hama/trunk/src/java/org/apache/hama/VectorInterface.java
URL:
http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/VectorInterface.java?rev=684768&r1=684767&r2=684768&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/VectorInterface.java
(original)
+++ incubator/hama/trunk/src/java/org/apache/hama/VectorInterface.java Mon Aug
11 08:02:56 2008
@@ -13,7 +13,7 @@
public int size();
/**
- * v(index)
+ * Gets the value of index
*
* @param index
* @return v(index)
@@ -21,7 +21,7 @@
public double get(int index);
/**
- * v(index) = value
+ * Sets the value of index
*
* @param index
* @param value
@@ -29,7 +29,7 @@
public void set(int index, double value);
/**
- * x = v
+ * Sets the vector
*
* @param v
* @return x = v
@@ -37,7 +37,7 @@
public Vector set(Vector v);
/**
- * v(index) += value
+ * Adds the value to v(index)
*
* @param index
* @param value