return document.getText(0, document.getLength());
}
private JComboBox findEndpointsComboBox() {
ContainerWalker finder = new ContainerWalker(requestDesktopPanel);
return finder.findComboBoxWithValue(ENDPOINT);
}
private void setComboTextFieldValue(JComboBox endpointsCombo, String otherValue) {
((JTextComponent) endpointsCombo.getEditor().getEditorComponent()).setText(otherValue);
}