You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2007/10/09 13:39:02 UTC

svn commit: r583116 - /jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/PropertyControlGui.java

Author: sebb
Date: Tue Oct  9 04:39:01 2007
New Revision: 583116

URL: http://svn.apache.org/viewvc?rev=583116&view=rev
Log:
Tidy up

Modified:
    jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/PropertyControlGui.java

Modified: jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/PropertyControlGui.java
URL: http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/PropertyControlGui.java?rev=583116&r1=583115&r2=583116&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/PropertyControlGui.java (original)
+++ jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/PropertyControlGui.java Tue Oct  9 04:39:01 2007
@@ -56,30 +56,13 @@
 public class PropertyControlGui extends AbstractConfigGui
     implements ActionListener, UnsharedComponent {
 
-	// Can't use Functor to access private Hashatble.Entry instances
-	// Probably a limitation of Functor?
-	public static class PropertyEntry {
-		private Map.Entry me;
-		PropertyEntry(Map.Entry me){
-			this.me=me;
-		}
-		public Object getKey() {
-			return me.getKey();
-		}
-		public Object getValue() {
-			return me.getValue();
-		}
-		public Object setValue(String value) {
-			return me.setValue(value);
-		}
-
-	}
 	private static final long serialVersionUID = 1L;
 
 	private static final String COLUMN_NAMES_0 = JMeterUtils.getResString("name"); // $NON-NLS-1$
 
 	private static final String COLUMN_NAMES_1 = JMeterUtils.getResString("value"); // $NON-NLS-1$
 
+	// TODO: add and delete not currently supported
 	private static final String ADD = "add"; // $NON-NLS-1$
 
 	private static final String DELETE = "delete"; // $NON-NLS-1$



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org