Compiler log for org.eclipse.e4.core.tests_1.0.0.v20110629-1700 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 22

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/core/internal/tests/CoreTestsActivator.java : 9 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 24)
private ServiceTracker debugTracker = null;
ServiceTracker is a raw type. References to generic type ServiceTracker<S,T> should be parameterized
2. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 25)
private ServiceTracker preferencesTracker = null;
ServiceTracker is a raw type. References to generic type ServiceTracker<S,T> should be parameterized
3. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 26)
private ServiceTracker eventAdminTracker;
ServiceTracker is a raw type. References to generic type ServiceTracker<S,T> should be parameterized
4. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 63)
preferencesTracker = new ServiceTracker(bundleContext, IPreferencesService.class.getName(), null);
Type safety: The constructor ServiceTracker(BundleContext, String, ServiceTrackerCustomizer) belongs to the raw type ServiceTracker. References to generic type ServiceTracker<S,T> should be parameterized
5. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 63)
preferencesTracker = new ServiceTracker(bundleContext, IPreferencesService.class.getName(), null);
ServiceTracker is a raw type. References to generic type ServiceTracker<S,T> should be parameterized
6. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 71)
debugTracker = new ServiceTracker(bundleContext, DebugOptions.class.getName(), null);
Type safety: The constructor ServiceTracker(BundleContext, String, ServiceTrackerCustomizer) belongs to the raw type ServiceTracker. References to generic type ServiceTracker<S,T> should be parameterized
7. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 71)
debugTracker = new ServiceTracker(bundleContext, DebugOptions.class.getName(), null);
ServiceTracker is a raw type. References to generic type ServiceTracker<S,T> should be parameterized
8. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 86)
eventAdminTracker = new ServiceTracker(bundleContext, EventAdmin.class.getName(), null);
Type safety: The constructor ServiceTracker(BundleContext, String, ServiceTrackerCustomizer) belongs to the raw type ServiceTracker. References to generic type ServiceTracker<S,T> should be parameterized
9. WARNING in /src/org/eclipse/e4/core/internal/tests/CoreTestsActivator.java
 (at line 86)
eventAdminTracker = new ServiceTracker(bundleContext, EventAdmin.class.getName(), null);
ServiceTracker is a raw type. References to generic type ServiceTracker<S,T> should be parameterized

/src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java : 12 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 80)
private final List<ServiceRegistration> registrations = new ArrayList<ServiceRegistration>();
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
2. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 80)
private final List<ServiceRegistration> registrations = new ArrayList<ServiceRegistration>();
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
3. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 93)
for (ServiceRegistration reg : registrations) {
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
4. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 130)
ServiceRegistration reg1 = bundleContext.registerService(PrintService.SERVICE_NAME, stringPrint1, null);
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
5. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 145)
ServiceRegistration reg2 = bundleContext.registerService(PrintService.SERVICE_NAME, stringPrint2, null);
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
6. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 154)
protected void ensureUnregistered(ServiceRegistration reg) {
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
7. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 164)
ServiceRegistration reg1 = bundleContext.registerService(PrintService.SERVICE_NAME, stringPrint1, null);
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
8. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 166)
ServiceReference ref = reg1.getReference();
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized
9. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 181)
ServiceRegistration reg1 = bundleContext.registerService(PrintService.SERVICE_NAME, new StringPrintService(), null);
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
10. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 202)
ServiceRegistration reg = bundleContext.registerService(IPaletteService.class.getName(), new PaletteImpl(Color.BLUE), null);
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
11. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 217)
ServiceRegistration reg1 = bundleContext.registerService(PrintService.SERVICE_NAME, stringPrint1, null);
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized
12. WARNING in /src/org/eclipse/e4/core/internal/tests/contexts/inject/ServiceContextTest.java
 (at line 218)
ServiceReference ref = reg1.getReference();
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized

/src/org/eclipse/e4/core/internal/tests/manual/ContextExample.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/core/internal/tests/manual/ContextExample.java
 (at line 109)
ServiceRegistration reg = bundleContext.registerService(IPaletteService.class
ServiceRegistration is a raw type. References to generic type ServiceRegistration<S> should be parameterized

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings