more explicit menu entry text (JAL-675)
authorjprocter <Jim Procter>
Fri, 29 Oct 2010 14:00:03 +0000 (14:00 +0000)
committerjprocter <Jim Procter>
Fri, 29 Oct 2010 14:00:03 +0000 (14:00 +0000)
src/jalview/ws/jws2/MsaWSClient.java

index ea91d63..92f0a3e 100644 (file)
@@ -285,7 +285,7 @@ public class MsaWSClient extends Jws2Client
       }
       final boolean withGaps = submitGaps;
 
-      JMenuItem method = new JMenuItem(calcName + "Defaults");
+      JMenuItem method = new JMenuItem(calcName + "with Defaults");
       method.setToolTipText(action + "with default settings");
 
       method.addActionListener(new ActionListener()
@@ -304,7 +304,7 @@ public class MsaWSClient extends Jws2Client
       {
         // only add these menu options if the service has user-modifiable
         // arguments
-        method = new JMenuItem(calcName + "Edit and run ...");
+        method = new JMenuItem("Edit settings and run ...");
         method.setToolTipText("View and change the parameters before alignment.");
 
         method.addActionListener(new ActionListener()
@@ -322,7 +322,7 @@ public class MsaWSClient extends Jws2Client
         List<WsParamSetI> presets = service.getParamStore().getPresets();
         if (presets != null && presets.size() > 0)
         {
-          JMenu presetlist = new JMenu(calcName + "Presets");
+          JMenu presetlist = new JMenu("Run "+calcName + "with preset");
 
           for (final WsParamSetI preset : presets)
           {