summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2009-03-16 01:27:39 +0000
committerRobert Gemmell <robbie@apache.org>2009-03-16 01:27:39 +0000
commit3e96e1e53e24a89e5b376bbbaaa4969fc93e19bf (patch)
tree644106f5910aecbcdd3677eb4bbe22569dd68332
parentb236843826597ff4605566d4460334bbffeda21c (diff)
downloadqpid-python-3e96e1e53e24a89e5b376bbbaaa4969fc93e19bf.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/qpid@754803 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java b/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java
index d4b2ed1db6..7e04e9ac7a 100644
--- a/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/views/MBeanTypeTabControl.java
+++ b/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 --");
}