Compiler log for org.eclipse.e4.ui.examples.css.rcp_0.9.1.v20091015-1330 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 5

errors others warnings forbidden warnings discouraged warnings

ERRORS

top others warnings forbidden warnings discouraged warnings

OTHER WARNINGS

top errors forbidden warnings discouraged warnings

/src/org/eclipse/e4/ui/examples/css/rcp/MarkAsReadAction.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/examples/css/rcp/MarkAsReadAction.java
 (at line 37)
IWorkbenchPart part = window.getActivePage().getActivePart();
The local variable part is never read

/src/org/eclipse/e4/ui/examples/css/rcp/NavigationView.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/examples/css/rcp/NavigationView.java
 (at line 55)
private ArrayList children;
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/ui/examples/css/rcp/NavigationView.java
 (at line 58)
children = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/ui/examples/css/rcp/NavigationView.java
 (at line 61)
children.add(child);
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/ui/examples/css/rcp/NavigationView.java
 (at line 69)
return (TreeObject[]) children.toArray(new TreeObject[children.size()]);
Type safety: The method toArray(Object[]) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings