- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {}
@Override public void modifyTestElement(TestElement el) { configureTestElement(el); }
@Override public TestElement createTestElement() { RecordingController con = new RecordingController(); super.configureTestElement(con); return con; }
@Override public void modifyTestElement(TestElement te) { super.configureTestElement(te); if (te instanceof ParallelSampler) { ParallelSampler parallelSampler = (ParallelSampler) te; parallelSampler.setGenerateParent(this.generateParentSamples.isSelected()); } }
@Override public TestElement createTestElement() { GenericController lc = new GenericController(); configureTestElement(lc); return lc; }