You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2011/11/09 22:15:56 UTC

svn commit: r1199967 - /jmeter/trunk/src/core/org/apache/jmeter/testbeans/gui/TableEditor.java

Author: sebb
Date: Wed Nov  9 21:15:55 2011
New Revision: 1199967

URL: http://svn.apache.org/viewvc?rev=1199967&view=rev
Log:
Javadoc

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/testbeans/gui/TableEditor.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/testbeans/gui/TableEditor.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/testbeans/gui/TableEditor.java?rev=1199967&r1=1199966&r2=1199967&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/testbeans/gui/TableEditor.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/testbeans/gui/TableEditor.java Wed Nov  9 21:15:55 2011
@@ -49,13 +49,22 @@ import org.apache.jorphan.logging.Loggin
 import org.apache.jorphan.reflect.Functor;
 import org.apache.log.Logger;
 
+/**
+ * Table editor for TestBean GUI properties.
+ */
 public class TableEditor extends PropertyEditorSupport implements FocusListener,TestBeanPropertyEditor,TableModelListener {
     private static final Logger log = LoggingManager.getLoggerForClass();
 
-    /** attribute name for class name of a table row, value must be a class which supports set and get methods for the property name */
+    /** 
+     * attribute name for class name of a table row;
+     * value must be java.lang.String, or a class which supports set and get methods for the property name.
+     */
     public static final String CLASSNAME = "tableObject.classname"; // $NON-NLS-1$
 
-    /** attribute name for table headers, value must be a String array */
+    /** 
+     * attribute name for table headers, value must be a String array.
+     * If {@link #CLASSNAME} is java.lang.String, there must be only a single entry.
+     */
     public static final String HEADERS = "table.headers"; // $NON-NLS-1$
 
     /** attribute name for property names within the {@link #CLASSNAME}, value must be String array */