equal
deleted
inserted
replaced
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 |