View | Details | Raw Unified | Return to bug 54913
Collapse All | Expand All

(-)src/protocol/jms/org/apache/jmeter/protocol/jms/control/gui/JMSPublisherGui.java (-1 / +1 lines)
Lines 264-270 public class JMSPublisherGui extends AbstractSamplerGui implements ChangeListene Link Here
264
        randomFile.setFilename(sampler.getRandomPath());
264
        randomFile.setFilename(sampler.getRandomPath());
265
        configChoice.setText(sampler.getConfigChoice());
265
        configChoice.setText(sampler.getConfigChoice());
266
        msgChoice.setText(sampler.getMessageChoice());
266
        msgChoice.setText(sampler.getMessageChoice());
267
        updateConfig(sampler.getConfigChoice());
268
        iterations.setText(sampler.getIterations());
267
        iterations.setText(sampler.getIterations());
269
        useAuth.setSelected(sampler.isUseAuth());
268
        useAuth.setSelected(sampler.isUseAuth());
270
        jmsUser.setEnabled(useAuth.isSelected());
269
        jmsUser.setEnabled(useAuth.isSelected());
Lines 273-278 public class JMSPublisherGui extends AbstractSamplerGui implements ChangeListene Link Here
273
        useNonPersistentDelivery.setSelected(sampler.getUseNonPersistentDelivery());
272
        useNonPersistentDelivery.setSelected(sampler.getUseNonPersistentDelivery());
274
        jmsPropertiesPanel.configure(sampler.getJMSProperties());
273
        jmsPropertiesPanel.configure(sampler.getJMSProperties());
275
        updateChoice(msgChoice.getText());
274
        updateChoice(msgChoice.getText());
275
        updateConfig(sampler.getConfigChoice());
276
    }
276
    }
277
277
278
    /**
278
    /**

Return to bug 54913