Compiler log for org.eclipse.e4.demo.modifier_0.9.0.v20090729-1800 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 19

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/demo/modifier/ShowUIEditor.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/demo/modifier/ShowUIEditor.java
 (at line 5)
import org.eclipse.core.commands.IHandler;
The import org.eclipse.core.commands.IHandler is never used
2. WARNING in /src/org/eclipse/e4/demo/modifier/ShowUIEditor.java
 (at line 6)
import org.eclipse.core.commands.IHandlerListener;
The import org.eclipse.core.commands.IHandlerListener is never used
3. WARNING in /src/org/eclipse/e4/demo/modifier/ShowUIEditor.java
 (at line 13)
import org.eclipse.e4.workbench.ui.renderers.PartRenderingEngine;
The import org.eclipse.e4.workbench.ui.renderers.PartRenderingEngine is never used
4. WARNING in /src/org/eclipse/e4/demo/modifier/ShowUIEditor.java
 (at line 26)
MPart uiEditor = ModelUtils.findPart(winPart, "UI Editor");
MPart is a raw type. References to generic type MPart<P> should be parameterized

/src/org/eclipse/e4/demo/viewer/ModelUtils.java : 15 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 16)
import org.eclipse.e4.ui.model.application.MApplication;
The import org.eclipse.e4.ui.model.application.MApplication is never used
2. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 33)
MPart<MPart<?>> parent = (MPart<MPart<?>>) part.getParent();
Type safety: Unchecked cast from MPart<capture#2-of ?> to MPart<MPart<?>>
3. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 43)
parent = (MPart<MPart<?>>) parent.getParent();
Type safety: Unchecked cast from MPart<capture#6-of ?> to MPart<MPart<?>>
4. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 91)
private static MPart findElementById(MPart part, String id) {
MPart is a raw type. References to generic type MPart<P> should be parameterized
5. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 91)
private static MPart findElementById(MPart part, String id) {
MPart is a raw type. References to generic type MPart<P> should be parameterized
6. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 100)
EList children = part.getChildren();
EList is a raw type. References to generic type EList<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 101)
MPart foundPart = null;
MPart is a raw type. References to generic type MPart<P> should be parameterized
8. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 102)
for (Iterator iterator = children.iterator(); iterator.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
9. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 103)
MPart childPart = (MPart) iterator.next();
MPart is a raw type. References to generic type MPart<P> should be parameterized
10. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 103)
MPart childPart = (MPart) iterator.next();
MPart is a raw type. References to generic type MPart<P> should be parameterized
11. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 112)
public static MPart findPart(MPart toSearch, String id) {
MPart is a raw type. References to generic type MPart<P> should be parameterized
12. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 112)
public static MPart findPart(MPart toSearch, String id) {
MPart is a raw type. References to generic type MPart<P> should be parameterized
13. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 113)
MPart found = findElementById(toSearch, id);
MPart is a raw type. References to generic type MPart<P> should be parameterized
14. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 114)
if (found instanceof MPart)
MPart is a raw type. References to generic type MPart<P> should be parameterized
15. WARNING in /src/org/eclipse/e4/demo/viewer/ModelUtils.java
 (at line 115)
return (MPart) found;
MPart is a raw type. References to generic type MPart<P> should be parameterized

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings