errors | others warnings | forbidden warnings | discouraged warnings |
top | others warnings | forbidden warnings | discouraged warnings |
top | errors | forbidden warnings | discouraged warnings |
1. WARNING in /src/org/eclipse/e4/ui/bindings/Trigger.java (at line 22) public abstract class Trigger implements Comparable { Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java (at line 193) ArrayList<Binding> tmp = (ArrayList<Binding>) context.getLocal(id); Type safety: Unchecked cast from Object to ArrayList<BindingServiceImpl.Binding> |
2. WARNING in /src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java (at line 203) ArrayList<Binding> tmp = (ArrayList<Binding>) context.getLocal(id); Type safety: Unchecked cast from Object to ArrayList<BindingServiceImpl.Binding> |
3. WARNING in /src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java (at line 285) ArrayList<Binding> tmp = (ArrayList<Binding>) context.get(CMD_LOOKUP, lookupCommand(cmdString)); Type safety: Unchecked cast from Object to ArrayList<BindingServiceImpl.Binding> |
4. WARNING in /src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java (at line 301) return (Collection<TriggerSequence>) context.get(CMD_SEQ_LOOKUP, lookupCommand(cmdString)); Type safety: Unchecked cast from Object to Collection<TriggerSequence> |
5. WARNING in /src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java (at line 321) return (Collection<ParameterizedCommand>) context.get(LOOKUP_PARTIAL_MATCH, lookupSequence(sequence.format())); Type safety: Unchecked cast from Object to Collection<ParameterizedCommand> |
1. WARNING in /src/org/eclipse/e4/ui/bindings/internal/CommandSequencesLookupFunction.java (at line 48) ArrayList<Binding> tmp = (ArrayList<Binding>) current.getLocal(cmdBindingId); Type safety: Unchecked cast from Object to ArrayList<BindingServiceImpl.Binding> |
1. WARNING in /src/org/eclipse/e4/ui/bindings/internal/PartialMatchCommandLookupFunction.java (at line 49) ArrayList<Binding> tmp = (ArrayList<Binding>) current.getLocal(bindingPrefixId); Type safety: Unchecked cast from Object to ArrayList<BindingServiceImpl.Binding> |
1. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 24) public static final SortedSet EMPTY_SORTED_SET = Collections SortedSet is a raw type. References to generic type SortedSet<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 24) public static final SortedSet EMPTY_SORTED_SET = Collections .unmodifiableSortedSet(new TreeSet()); Type safety: Unchecked invocation unmodifiableSortedSet(TreeSet) of the generic method unmodifiableSortedSet(SortedSet<T>) of type Collections |
3. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 25) .unmodifiableSortedSet(new TreeSet()); Type safety: The expression of type TreeSet needs unchecked conversion to conform to SortedSet<Object> |
4. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 25) .unmodifiableSortedSet(new TreeSet()); TreeSet is a raw type. References to generic type TreeSet<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 41) public static final void assertInstance(final Object object, final Class c) { Class is a raw type. References to generic type Class<T> should be parameterized |
6. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 56) private static final void assertInstance(final Object object, final Class c, Class is a raw type. References to generic type Class<T> should be parameterized |
7. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 108) public static final int compare(final Comparable left, final Comparable right) { Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
8. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 108) public static final int compare(final Comparable left, final Comparable right) { Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
9. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 116) return left.compareTo(right); Type safety: The method compareTo(Object) belongs to the raw type Comparable. References to generic type Comparable<T> should be parameterized |
10. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 130) public static final int compare(final Comparable[] left, final Comparable[] right) { Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
11. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 130) public static final int compare(final Comparable[] left, final Comparable[] right) { Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
12. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 170) public static final int compare(final List left, final List right) { List is a raw type. References to generic type List<E> should be parameterized |
13. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 170) public static final int compare(final List left, final List right) { List is a raw type. References to generic type List<E> should be parameterized |
14. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 186) int compareTo = compare((Comparable) left.get(i), (Comparable) right.get(i)); Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
15. WARNING in /src/org/eclipse/e4/ui/bindings/internal/Util.java (at line 186) int compareTo = compare((Comparable) left.get(i), (Comparable) right.get(i)); Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 115) public static List generatePossibleKeyStrokes(Event event) { List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 116) final List keyStrokes = new ArrayList(3); List is a raw type. References to generic type List<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 116) final List keyStrokes = new ArrayList(3); ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 128) keyStrokes.add(SWTKeySupport.convertAcceleratorToKeyStroke(firstAccelerator)); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 138) keyStrokes.add(SWTKeySupport.convertAcceleratorToKeyStroke(secondAccelerator)); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
6. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 143) keyStrokes.add(SWTKeySupport.convertAcceleratorToKeyStroke(thirdAccelerator)); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
7. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 165) private static boolean isOutOfOrderKey(List keyStrokes) { List is a raw type. References to generic type List<E> should be parameterized |
8. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 288) List keyStrokes = generatePossibleKeyStrokes(event); List is a raw type. References to generic type List<E> should be parameterized |
9. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 434) public boolean press(List potentialKeyStrokes, Event event) { List is a raw type. References to generic type List<E> should be parameterized |
10. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 439) for (Iterator iterator = potentialKeyStrokes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
11. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 464) Collection match = getBindingService().getConflictsFor(sequenceAfterKeyStroke); Collection is a raw type. References to generic type Collection<E> should be parameterized |
12. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java (at line 495) void processKeyEvent(List keyStrokes, Event event) { List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeySequence.java (at line 47) public final class KeySequence extends TriggerSequence implements Comparable { Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
2. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeySequence.java (at line 134) public static final KeySequence getInstance(final List keyStrokes) { List is a raw type. References to generic type List<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeySequence.java (at line 135) return new KeySequence((KeyStroke[]) keyStrokes.toArray(new KeyStroke[keyStrokes.size()])); Type safety: The method toArray(Object[]) belongs to the raw type List. References to generic type List<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeySequence.java (at line 154) final List keyStrokes = new ArrayList(); List is a raw type. References to generic type List<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeySequence.java (at line 154) final List keyStrokes = new ArrayList(); ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized |
6. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeySequence.java (at line 159) keyStrokes.add(KeyStroke.getInstance(stringTokenizer.nextToken())); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
7. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeySequence.java (at line 162) final KeyStroke[] keyStrokeArray = (KeyStroke[]) keyStrokes .toArray(new KeyStroke[keyStrokes.size()]); Type safety: The method toArray(Object[]) belongs to the raw type List. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/keys/KeyStroke.java (at line 45) public final class KeyStroke extends Trigger implements Comparable { Comparable is a raw type. References to generic type Comparable<T> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/keys/OutOfOrderListener.java (at line 59) List keyStrokes = KeyBindingDispatcher.generatePossibleKeyStrokes(event); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 34) private final Map modifierKeyTable = new HashMap(); Map is a raw type. References to generic type Map<K,V> should be parameterized |
2. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 34) private final Map modifierKeyTable = new HashMap(); HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized |
3. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 40) private final Map nameTable = new HashMap(); Map is a raw type. References to generic type Map<K,V> should be parameterized |
4. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 40) private final Map nameTable = new HashMap(); HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized |
5. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 46) private final Map naturalKeyTable = new HashMap(); Map is a raw type. References to generic type Map<K,V> should be parameterized |
6. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 46) private final Map naturalKeyTable = new HashMap(); HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized |
7. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 58) modifierKeyTable.put(ALT_NAME, alt); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
8. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 59) nameTable.put(alt, ALT_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
9. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 60) modifierKeyTable.put(COMMAND_NAME, command); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
10. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 61) nameTable.put(command, COMMAND_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
11. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 62) modifierKeyTable.put(CTRL_NAME, ctrl); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
12. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 63) nameTable.put(ctrl, CTRL_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
13. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 64) modifierKeyTable.put(SHIFT_NAME, shift); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
14. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 65) nameTable.put(shift, SHIFT_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
15. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 66) modifierKeyTable.put(M1_NAME, Util.isMac() ? command : ctrl); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
16. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 67) modifierKeyTable.put(M2_NAME, shift); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
17. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 68) modifierKeyTable.put(M3_NAME, alt); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
18. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 69) modifierKeyTable.put(M4_NAME, Util.isMac() ? ctrl : command); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
19. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 72) naturalKeyTable.put(ARROW_DOWN_NAME, arrowDown); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
20. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 73) nameTable.put(arrowDown, ARROW_DOWN_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
21. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 75) naturalKeyTable.put(ARROW_LEFT_NAME, arrowLeft); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
22. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 76) nameTable.put(arrowLeft, ARROW_LEFT_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
23. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 78) naturalKeyTable.put(ARROW_RIGHT_NAME, arrowRight); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
24. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 79) nameTable.put(arrowRight, ARROW_RIGHT_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
25. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 81) naturalKeyTable.put(ARROW_UP_NAME, arrowUp); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
26. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 82) nameTable.put(arrowUp, ARROW_UP_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
27. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 84) naturalKeyTable.put(BREAK_NAME, breakKey); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
28. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 85) nameTable.put(breakKey, BREAK_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
29. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 87) naturalKeyTable.put(BS_NAME, bs); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
30. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 88) nameTable.put(bs, BS_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
31. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 89) naturalKeyTable.put(BACKSPACE_NAME, bs); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
32. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 91) naturalKeyTable.put(CAPS_LOCK_NAME, capsLock); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
33. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 92) nameTable.put(capsLock, CAPS_LOCK_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
34. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 94) naturalKeyTable.put(CR_NAME, cr); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
35. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 95) nameTable.put(cr, CR_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
36. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 96) naturalKeyTable.put(ENTER_NAME, cr); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
37. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 97) naturalKeyTable.put(RETURN_NAME, cr); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
38. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 99) naturalKeyTable.put(DEL_NAME, del); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
39. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 100) nameTable.put(del, DEL_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
40. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 101) naturalKeyTable.put(DELETE_NAME, del); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
41. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 103) naturalKeyTable.put(END_NAME, end); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
42. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 104) nameTable.put(end, END_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
43. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 106) naturalKeyTable.put(ESC_NAME, esc); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
44. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 107) nameTable.put(esc, ESC_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
45. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 108) naturalKeyTable.put(ESCAPE_NAME, esc); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
46. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 110) naturalKeyTable.put(F1_NAME, f1); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
47. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 111) nameTable.put(f1, F1_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
48. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 113) naturalKeyTable.put(F2_NAME, new Integer(SWT.F2)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
49. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 114) nameTable.put(f2, F2_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
50. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 116) naturalKeyTable.put(F3_NAME, new Integer(SWT.F3)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
51. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 117) nameTable.put(f3, F3_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
52. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 119) naturalKeyTable.put(F4_NAME, new Integer(SWT.F4)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
53. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 120) nameTable.put(f4, F4_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
54. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 122) naturalKeyTable.put(F5_NAME, new Integer(SWT.F5)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
55. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 123) nameTable.put(f5, F5_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
56. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 125) naturalKeyTable.put(F6_NAME, new Integer(SWT.F6)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
57. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 126) nameTable.put(f6, F6_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
58. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 128) naturalKeyTable.put(F7_NAME, new Integer(SWT.F7)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
59. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 129) nameTable.put(f7, F7_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
60. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 131) naturalKeyTable.put(F8_NAME, new Integer(SWT.F8)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
61. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 132) nameTable.put(f8, F8_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
62. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 134) naturalKeyTable.put(F9_NAME, new Integer(SWT.F9)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
63. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 135) nameTable.put(f9, F9_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
64. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 137) naturalKeyTable.put(F10_NAME, new Integer(SWT.F10)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
65. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 138) nameTable.put(f10, F10_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
66. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 140) naturalKeyTable.put(F11_NAME, new Integer(SWT.F11)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
67. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 141) nameTable.put(f11, F11_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
68. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 143) naturalKeyTable.put(F12_NAME, new Integer(SWT.F12)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
69. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 144) nameTable.put(f12, F12_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
70. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 146) naturalKeyTable.put(F13_NAME, new Integer(SWT.F13)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
71. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 147) nameTable.put(f13, F13_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
72. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 149) naturalKeyTable.put(F14_NAME, new Integer(SWT.F14)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
73. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 150) nameTable.put(f14, F14_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
74. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 152) naturalKeyTable.put(F15_NAME, new Integer(SWT.F15)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
75. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 153) nameTable.put(f15, F15_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
76. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 155) naturalKeyTable.put(F16_NAME, new Integer(SWT.F16)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
77. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 156) nameTable.put(f16, F16_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
78. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 158) naturalKeyTable.put(F17_NAME, new Integer(SWT.F17)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
79. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 159) nameTable.put(f17, F17_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
80. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 161) naturalKeyTable.put(F18_NAME, new Integer(SWT.F18)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
81. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 162) nameTable.put(f18, F18_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
82. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 164) naturalKeyTable.put(F19_NAME, new Integer(SWT.F19)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
83. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 165) nameTable.put(f19, F19_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
84. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 167) naturalKeyTable.put(F20_NAME, new Integer(SWT.F20)); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
85. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 168) nameTable.put(f20, F20_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
86. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 170) naturalKeyTable.put(FF_NAME, ff); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
87. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 171) nameTable.put(ff, FF_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
88. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 173) naturalKeyTable.put(HOME_NAME, home); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
89. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 174) nameTable.put(home, HOME_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
90. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 176) naturalKeyTable.put(INSERT_NAME, insert); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
91. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 177) nameTable.put(insert, INSERT_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
92. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 179) naturalKeyTable.put(LF_NAME, lf); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
93. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 180) nameTable.put(lf, LF_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
94. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 182) naturalKeyTable.put(NUL_NAME, nul); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
95. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 183) nameTable.put(nul, NUL_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
96. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 185) naturalKeyTable.put(NUM_LOCK_NAME, numLock); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
97. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 186) nameTable.put(numLock, NUM_LOCK_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
98. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 188) naturalKeyTable.put(NUMPAD_0_NAME, keypad0); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
99. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 189) nameTable.put(keypad0, NUMPAD_0_NAME); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
100. WARNING in /src/org/eclipse/e4/ui/bindings/keys/SWTKeyLookup.java (at line 191) naturalKeyTable.put(NUMPAD_1_NAME, keypad1); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/AbstractKeyFormatter.java (at line 64) private static final Set resourceBundleKeys = new HashSet(); Set is a raw type. References to generic type Set<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/AbstractKeyFormatter.java (at line 64) private static final Set resourceBundleKeys = new HashSet(); HashSet is a raw type. References to generic type HashSet<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/AbstractKeyFormatter.java (at line 67) final Enumeration keyEnumeration = RESOURCE_BUNDLE.getKeys(); Enumeration is a raw type. References to generic type Enumeration<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/AbstractKeyFormatter.java (at line 70) resourceBundleKeys.add(element); Type safety: The method add(Object) belongs to the raw type Set. References to generic type Set<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 42) private final static HashMap CARBON_KEY_LOOK_UP = new HashMap(); HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized |
2. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 42) private final static HashMap CARBON_KEY_LOOK_UP = new HashMap(); HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized |
3. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 60) CARBON_KEY_LOOK_UP.put(IKeyLookup.BS_NAME, carbonBackspace); Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
4. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 61) CARBON_KEY_LOOK_UP.put(IKeyLookup.BACKSPACE_NAME, carbonBackspace); Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
5. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 62) CARBON_KEY_LOOK_UP.put(IKeyLookup.CR_NAME, "\u21A9"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
6. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 64) CARBON_KEY_LOOK_UP.put(IKeyLookup.DEL_NAME, carbonDelete); Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
7. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 65) CARBON_KEY_LOOK_UP.put(IKeyLookup.DELETE_NAME, carbonDelete); Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
8. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 66) CARBON_KEY_LOOK_UP.put(IKeyLookup.SPACE_NAME, "\u2423"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
9. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 67) CARBON_KEY_LOOK_UP.put(IKeyLookup.ALT_NAME, "\u2325"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
10. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 68) CARBON_KEY_LOOK_UP.put(IKeyLookup.COMMAND_NAME, "\u2318"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
11. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 69) CARBON_KEY_LOOK_UP.put(IKeyLookup.CTRL_NAME, "\u2303"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
12. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 70) CARBON_KEY_LOOK_UP.put(IKeyLookup.SHIFT_NAME, "\u21E7"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
13. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 71) CARBON_KEY_LOOK_UP.put(IKeyLookup.ARROW_DOWN_NAME, "\u2193"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
14. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 72) CARBON_KEY_LOOK_UP.put(IKeyLookup.ARROW_LEFT_NAME, "\u2190"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
15. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 73) CARBON_KEY_LOOK_UP.put(IKeyLookup.ARROW_RIGHT_NAME, "\u2192"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
16. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 74) CARBON_KEY_LOOK_UP.put(IKeyLookup.ARROW_UP_NAME, "\u2191"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
17. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 75) CARBON_KEY_LOOK_UP.put(IKeyLookup.END_NAME, "\u2198"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
18. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 76) CARBON_KEY_LOOK_UP.put(IKeyLookup.NUMPAD_ENTER_NAME, "\u2324"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
19. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 77) CARBON_KEY_LOOK_UP.put(IKeyLookup.HOME_NAME, "\u2196"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
20. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 78) CARBON_KEY_LOOK_UP.put(IKeyLookup.PAGE_DOWN_NAME, "\u21DF"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
21. WARNING in /src/org/eclipse/e4/ui/bindings/keys/formatting/NativeKeyFormatter.java (at line 79) CARBON_KEY_LOOK_UP.put(IKeyLookup.PAGE_UP_NAME, "\u21DE"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type HashMap. References to generic type HashMap<K,V> should be parameterized |
top | errors | others warnings | discouraged warnings |
top | errors | others warnings | forbidden warnings |