diff options
| author | Robert Gemmell <robbie@apache.org> | 2009-03-16 01:27:39 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2009-03-16 01:27:39 +0000 |
| commit | 5f770e654a76abbeb7732092cab84e6358cae096 (patch) | |
| tree | 7852b0dd9fac64235ce3e15b1d8676880126a672 /qpid/java | |
| parent | 32d5fef50b5995378abb6459133460ffddf66ea4 (diff) | |
| download | qpid-python-5f770e654a76abbeb7732092cab84e6358cae096.tar.gz | |
QPID-1738: update button and descriptive text to better indicate the views purpose to users
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@754803 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java b/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java index d4b2ed1db6..7e04e9ac7a 100644 --- a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java +++ b/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java @@ -191,7 +191,7 @@ public abstract class MBeanTypeTabControl */ protected void createAddButton(Composite parentComposite) { - Button _addButton = _toolkit.createButton(parentComposite, "<- Add to Navigation", SWT.PUSH); + Button _addButton = _toolkit.createButton(parentComposite, "<- Add selected " + _type + "(s) to navigation tree", SWT.PUSH); GridData gridData = new GridData(SWT.CENTER, SWT.CENTER, false, false); _addButton.setLayoutData(gridData); _addButton.addSelectionListener(new SelectionAdapter(){ @@ -292,7 +292,7 @@ public abstract class MBeanTypeTabControl protected void setLabelValues() { _labelName.setText("Type : " + _type); - _labelDesc.setText("Select the " + _type + "(s) to add in the Navigation View"); + _labelDesc.setText("Select the " + _type + "(s) to add to the navigation tree for further interaction."); _labelList.setText("-- List of " + _type + "s --"); } |
