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 2006/04/29 14:37:26 UTC

svn commit: r398141 - /jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java

Author: sebb
Date: Sat Apr 29 05:37:25 2006
New Revision: 398141

URL: http://svn.apache.org/viewcvs?rev=398141&view=rev
Log:
Document update

Modified:
    jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java

Modified: jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java
URL: http://svn.apache.org/viewcvs/jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java?rev=398141&r1=398140&r2=398141&view=diff
==============================================================================
--- jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java (original)
+++ jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/control/gui/HttpTestSampleGui.java Sat Apr 29 05:37:25 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright 2001-20056 The Apache Software Foundation.
+ * Copyright 2001-2006 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -78,15 +78,15 @@
 			sampler.removeProperty(HTTPSamplerBase.IMAGE_PARSER);
 		}
 		if (isMon.isSelected()) {
-			((HTTPSamplerBase) sampler).setMonitor("true");
+			((HTTPSamplerBase) sampler).setMonitor("true"); // $NON-NLS-1$
 		} else {
-			((HTTPSamplerBase) sampler).setMonitor("false");
+			((HTTPSamplerBase) sampler).setMonitor("false"); // $NON-NLS-1$
 		}
 		this.configureTestElement(sampler);
 	}
 
 	public String getLabelResource() {
-		return "web_testing_title";
+		return "web_testing_title"; // $NON-NLS-1$
 	}
 
 	protected void init() {
@@ -107,14 +107,14 @@
 		// OPTIONAL TASKS
 		HorizontalPanel optionalTasksPanel = new HorizontalPanel();
 		optionalTasksPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), JMeterUtils
-				.getResString("optional_tasks")));
+				.getResString("optional_tasks"))); // $NON-NLS-1$
 
 		// RETRIEVE IMAGES
 		JPanel retrieveImagesPanel = new JPanel();
-		getImages = new JCheckBox(JMeterUtils.getResString("web_testing_retrieve_images"));
+		getImages = new JCheckBox(JMeterUtils.getResString("web_testing_retrieve_images")); // $NON-NLS-1$
 		retrieveImagesPanel.add(getImages);
 		JPanel isMonitorPanel = new JPanel();
-		isMon = new JCheckBox(JMeterUtils.getResString("monitor_is_title"));
+		isMon = new JCheckBox(JMeterUtils.getResString("monitor_is_title")); // $NON-NLS-1$
 		isMonitorPanel.add(isMon);
 		optionalTasksPanel.add(retrieveImagesPanel);
 		optionalTasksPanel.add(isMonitorPanel);



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