Author: sebb
Date: Thu Sep 22 18:28:58 2011
New Revision: 1174302
URL: http://svn.apache.org/viewvc?rev=1174302&view=rev
Log:
Javadoc
Modified:
jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledChoice.java
jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledTextField.java
Modified:
jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledChoice.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledChoice.java?rev=1174302&r1=1174301&r2=1174302&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledChoice.java
(original)
+++ jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledChoice.java
Thu Sep 22 18:28:58 2011
@@ -93,6 +93,9 @@ public class JLabeledChoice extends JPan
init();
}
+ /**
+ * Get the label {@link JLabel} followed by the combo-box @link {@link
JComboBox}.
+ */
public List<JComponent> getComponentList() {
List<JComponent> comps = new LinkedList<JComponent>();
comps.add(mLabel);
Modified:
jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledTextField.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledTextField.java?rev=1174302&r1=1174301&r2=1174302&view=diff
==============================================================================
---
jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledTextField.java
(original)
+++
jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/gui/JLabeledTextField.java
Thu Sep 22 18:28:58 2011
@@ -26,6 +26,7 @@ import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
+import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
@@ -88,8 +89,9 @@ public class JLabeledTextField extends J
this.setBackground(bk);
init();
}
-
- /** {@inheritDoc} */
+ /**
+ * Get the label {@link JLabel} followed by the text field @link {@link
JTextField}.
+ */
public List<JComponent> getComponentList() {
List<JComponent> comps = new LinkedList<JComponent>();
comps.add(mLabel);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]