Compiler log for org.eclipse.e4.tm.graphics.tests_0.9.0.v20091029-1230 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 23

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/tm/graphics/tests/Graphical2dTest.java : 16 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 50)
return (c.isInstance(child) ? (T)child : null);
Type safety: Unchecked cast from PNode to T

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

/src/org/eclipse/e4/tm/graphics/tests/AllTests.java : 7 warnings :

FORBIDDEN ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tm/graphics/tests/AllTests.java
 (at line 14)
import junit.framework.Test;
Access restriction: The type Test is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
2. WARNING in /src/org/eclipse/e4/tm/graphics/tests/AllTests.java
 (at line 15)
import junit.framework.TestSuite;
Access restriction: The type TestSuite is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
3. WARNING in /src/org/eclipse/e4/tm/graphics/tests/AllTests.java
 (at line 19)
public static Test suite() {
Access restriction: The type Test is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
4. WARNING in /src/org/eclipse/e4/tm/graphics/tests/AllTests.java
 (at line 20)
TestSuite suite = new TestSuite(
Access restriction: The type TestSuite is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
5. WARNING in /src/org/eclipse/e4/tm/graphics/tests/AllTests.java
 (at line 20)
TestSuite suite = new TestSuite( "Test for org.eclipse.e4.tm.builder.widgets");
Access restriction: The constructor TestSuite(String) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
6. WARNING in /src/org/eclipse/e4/tm/graphics/tests/AllTests.java
 (at line 20)
TestSuite suite = new TestSuite(
Access restriction: The type TestSuite is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
7. WARNING in /src/org/eclipse/e4/tm/graphics/tests/AllTests.java
 (at line 23)
suite.addTestSuite(Graphical2dTest.class);
Access restriction: The method addTestSuite(Class) from the type TestSuite is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar

/src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java : 16 warnings :

FORBIDDEN ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 23)
import junit.framework.Assert;
Access restriction: The type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
2. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 72)
Assert.assertNotNull(comp);
Access restriction: The type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
3. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 72)
Assert.assertNotNull(comp);
Access restriction: The method assertNotNull(Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
4. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 74)
assertEquals(comp, builder.getObject(parent, Composite.class));
Access restriction: The method assertEquals(Object, Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
5. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 77)
assertEquals(pCanvas.getCamera().getLayerCount(), 1);
Access restriction: The method assertEquals(int, int) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
6. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 79)
assertEquals(pCanvas.getLayer(), layer);
Access restriction: The method assertEquals(Object, Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
7. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 82)
Assert.assertNotNull(pTextNode);
Access restriction: The type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
8. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 82)
Assert.assertNotNull(pTextNode);
Access restriction: The method assertNotNull(Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
9. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 83)
assertEquals(eTextNode.getText(), pTextNode.getText());
Access restriction: The method assertEquals(String, String) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
10. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 86)
Assert.assertNotNull(pRectNode);
Access restriction: The type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
11. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 86)
Assert.assertNotNull(pRectNode);
Access restriction: The method assertNotNull(Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
12. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 91)
assertEquals(expected.x, actual.x);
Access restriction: The method assertEquals(Object, Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
13. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 92)
assertEquals(expected.y, actual.y);
Access restriction: The method assertEquals(Object, Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
14. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 93)
assertEquals(expected.width, actual.width);
Access restriction: The method assertEquals(Object, Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar
15. WARNING in /src/org/eclipse/e4/tm/graphics/tests/Graphical2dTest.java
 (at line 94)
assertEquals(expected.height, actual.height);
Access restriction: The method assertEquals(Object, Object) from the type Assert is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.junit_3.8.2.v20090203-1005/junit.jar

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings