jdk/src/share/classes/java/awt/MenuItem.java
changeset 438 2ae294e4518c
parent 2 90ce3da70b43
child 715 f16baef3a20e
equal deleted inserted replaced
437:101b84dce5da 438:2ae294e4518c
   845          * @param i zero-based index of the actions
   845          * @param i zero-based index of the actions
   846          */
   846          */
   847         public String getAccessibleActionDescription(int i) {
   847         public String getAccessibleActionDescription(int i) {
   848             if (i == 0) {
   848             if (i == 0) {
   849                 // [[[PENDING:  WDW -- need to provide a localized string]]]
   849                 // [[[PENDING:  WDW -- need to provide a localized string]]]
   850                 return new String("click");
   850                 return "click";
   851             } else {
   851             } else {
   852                 return null;
   852                 return null;
   853             }
   853             }
   854         }
   854         }
   855 
   855