mirror of https://github.com/apache/jmeter.git
Reset data in TableEditor when switching between different CompareAssertions in gui.
Based on a patch by Vincent Herilier (vherilier at gmail.com).
Bugzilla Id: 58742
git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1724506 13f79535-47bb-0310-9956-ffa450edef68
Former-commit-id: 4aa219a2e6
This commit is contained in:
parent
de75e2ede9
commit
321182b341
|
|
@ -42,6 +42,7 @@ import javax.swing.ListSelectionModel;
|
|||
import javax.swing.event.TableModelEvent;
|
||||
import javax.swing.event.TableModelListener;
|
||||
|
||||
import org.apache.jmeter.gui.ClearGui;
|
||||
import org.apache.jmeter.testelement.property.TestElementProperty;
|
||||
import org.apache.jmeter.util.JMeterUtils;
|
||||
import org.apache.jorphan.gui.ObjectTableModel;
|
||||
|
|
@ -56,7 +57,7 @@ import org.apache.log.Logger;
|
|||
* <li>property type Collection of {@link String}s, where there is a single header entry</li>
|
||||
* </ul>
|
||||
*/
|
||||
public class TableEditor extends PropertyEditorSupport implements FocusListener,TestBeanPropertyEditor,TableModelListener {
|
||||
public class TableEditor extends PropertyEditorSupport implements FocusListener,TestBeanPropertyEditor,TableModelListener, ClearGui {
|
||||
private static final Logger log = LoggingManager.getLoggerForClass();
|
||||
|
||||
/**
|
||||
|
|
@ -312,4 +313,9 @@ public class TableEditor extends PropertyEditorSupport implements FocusListener,
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void clearGui() {
|
||||
this.model.clearData();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -134,6 +134,8 @@ Summary
|
|||
<li><bug>58756</bug>CookieManager : Cookie Policy select box content must depend on Cookie implementation.</li>
|
||||
<li><bug>56358</bug>Cookie manager supports cross port cookies and RFC6265.</li>
|
||||
<li><bug>58773</bug>TestCacheManager : Add tests for CacheManager that use HttpClient 4</li>
|
||||
<li><bug>58742</bug>CompareAssertion : Reset data in TableEditor when switching between different CompareAssertions in gui.
|
||||
Based on a patch by Vincent Herilier (vherilier at gmail.com)</li>
|
||||
<li><bug>58848</bug>Argument Panel : when adding an argument (add button or from clipboard) scroll the table to the new line. Contributed by Benoit Vatan (benoit.vatan at gmail.com)</li>
|
||||
</ul>
|
||||
|
||||
|
|
@ -279,6 +281,7 @@ Summary
|
|||
<li><a href="http://www.ubik-ingenierie.com">Ubik-Ingenierie S.A.S.</a></li>
|
||||
<li>Oleg Kalnichevski (olegk at apache.org)</li>
|
||||
<li>Pascal Schumacher (pascalschumacher at gmx.net</li>
|
||||
<li>Vincent Herilier (vherilier at gmail.com)</li>
|
||||
</ul>
|
||||
|
||||
<br/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue