}
}
private void createUIComponents() {
name = new JTextField();
nameValidator = new NotEmptyValidator(this, name, bundle.getString("tool_window.tickets.report_editor.validation.not_empty.name"));
query = new JTextArea();
queryValidator = new NotEmptyValidator(this, query, bundle.getString("tool_window.tickets.report_editor.validation.not_empty.query"));
description = new JTextField();
descriptionValidator = new NotEmptyValidator(this, description, bundle.getString("tool_window.tickets.report_editor.validation.not_empty.description"));
setInputVerifiers();
validators = new HashMap<Validator, Boolean>();
okButton = new JButton();