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/tests/Activator.java (at line 64) public void log(ServiceReference sr, int level, String message) { ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 69) public void log(ServiceReference sr, int level, String message, ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 29) private Map<String,String> emptyAttrs, schemeOnly, schemeAndTypeAttrs, fullAttrs; The value of the field BindingCreateTest.fullAttrs is not used |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 22) import org.eclipse.e4.ui.bindings.internal.ContextSet; The import org.eclipse.e4.ui.bindings.internal.ContextSet is never used |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 23) import org.eclipse.e4.ui.internal.services.ActiveContextsFunction; The import org.eclipse.e4.ui.internal.services.ActiveContextsFunction is never used |
3. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 26) import org.eclipse.e4.ui.services.IServiceConstants; The import org.eclipse.e4.ui.services.IServiceConstants is never used |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 165) Binding about = getTestBinding(ABOUT_ID); The value of the local variable about is not used |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 23) import org.eclipse.e4.ui.bindings.internal.ContextSet; The import org.eclipse.e4.ui.bindings.internal.ContextSet is never used |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 25) import org.eclipse.e4.ui.internal.services.ActiveContextsFunction; The import org.eclipse.e4.ui.internal.services.ActiveContextsFunction is never used |
3. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 28) import org.eclipse.e4.ui.services.IServiceConstants; The import org.eclipse.e4.ui.services.IServiceConstants is never used |
top | errors | others warnings | discouraged warnings |
top | errors | others warnings | forbidden warnings |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 4) import org.eclipse.e4.core.contexts.EclipseContextFactory; Discouraged access: The type EclipseContextFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 5) import org.eclipse.e4.core.contexts.IEclipseContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
3. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 24) private IEclipseContext appContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
4. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 25) private IEclipseContext serviceContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
5. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 45) serviceContext = EclipseContextFactory.getServiceContext(context); Discouraged access: The type EclipseContextFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
6. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 45) serviceContext = EclipseContextFactory.getServiceContext(context); Discouraged access: The method getServiceContext(BundleContext) from the type EclipseContextFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
7. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 46) appContext = serviceContext.createChild(); Discouraged access: The method createChild() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
8. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 50) private void addLogService(IEclipseContext context) { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
9. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 51) context.set(LogService.class.getName(), new LogService() { public void log(int level, String message) { System.out.println(level + ": " + message); } public void log(int level, String message, Throwable exception) { System.out.println(level + ": " + message); if (exception != null) { exception.printStackTrace(); } } public void log(ServiceReference sr, int level, String message) { // TODO Auto-generated method stub } public void log(ServiceReference sr, int level, String message, Throwable exception) { // TODO Auto-generated method stub } }); Discouraged access: The method set(String, Object) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
10. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 78) serviceContext.dispose(); Discouraged access: The method dispose() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
11. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 82) public IEclipseContext getGlobalContext() { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
12. WARNING in /src/org/eclipse/e4/ui/bindings/tests/Activator.java (at line 87) return (PackageAdmin) serviceContext.get(PackageAdmin.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 7) import org.eclipse.e4.core.commands.CommandServiceAddon; Discouraged access: The type CommandServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 8) import org.eclipse.e4.core.commands.ECommandService; Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
3. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 9) import org.eclipse.e4.core.contexts.ContextInjectionFactory; Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
4. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 10) import org.eclipse.e4.core.contexts.IEclipseContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
5. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 11) import org.eclipse.e4.ui.bindings.BindingServiceAddon; Discouraged access: The type BindingServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
6. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 12) import org.eclipse.e4.ui.bindings.EBindingService; Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
7. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 13) import org.eclipse.e4.ui.services.ContextServiceAddon; Discouraged access: The type ContextServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
8. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 25) private IEclipseContext workbenchContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
9. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 26) private EBindingService bs; Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
10. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 33) IEclipseContext globalContext = Activator.getDefault() Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
11. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 35) workbenchContext = globalContext.createChild("workbenchContext"); Discouraged access: The method createChild(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
12. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 36) ContextInjectionFactory.make(CommandServiceAddon.class, Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
13. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 36) ContextInjectionFactory.make(CommandServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<CommandServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
14. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 36) ContextInjectionFactory.make(CommandServiceAddon.class, Discouraged access: The type CommandServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
15. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 38) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
16. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 38) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<ContextServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
17. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 38) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The type ContextServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
18. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 39) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
19. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 39) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<BindingServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
20. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 39) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The type BindingServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
21. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 45) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
22. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 45) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
23. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 45) ECommandService cs = (ECommandService) workbenchContext .get(ECommandService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
24. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 46) .get(ECommandService.class.getName()); Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
25. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 47) bs = (EBindingService) workbenchContext Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
26. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 47) bs = (EBindingService) workbenchContext .get(EBindingService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
27. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 48) .get(EBindingService.class.getName()); Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
28. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 50) cmd = cs.createCommand(TEST_ID1, null); Discouraged access: The method createCommand(String, Map) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
29. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 51) emptySeq = bs.createSequence(""); Discouraged access: The method createSequence(String) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
30. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 52) seq = bs.createSequence("CTRL+5 T"); Discouraged access: The method createSequence(String) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
31. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 57) schemeOnly.put(EBindingService.SCHEME_ID_ATTR_TAG, DEFAULT_SCHEME_ID); Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
32. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 57) schemeOnly.put(EBindingService.SCHEME_ID_ATTR_TAG, DEFAULT_SCHEME_ID); Discouraged access: The field SCHEME_ID_ATTR_TAG from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
33. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 60) schemeAndTypeAttrs.put(EBindingService.SCHEME_ID_ATTR_TAG, DEFAULT_SCHEME_ID); Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
34. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 60) schemeAndTypeAttrs.put(EBindingService.SCHEME_ID_ATTR_TAG, DEFAULT_SCHEME_ID); Discouraged access: The field SCHEME_ID_ATTR_TAG from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
35. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 61) schemeAndTypeAttrs.put(EBindingService.TYPE_ATTR_TAG, "user"); Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
36. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 61) schemeAndTypeAttrs.put(EBindingService.TYPE_ATTR_TAG, "user"); Discouraged access: The field TYPE_ATTR_TAG from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
37. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 66) workbenchContext.dispose(); Discouraged access: The method dispose() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
38. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 73) Binding b = bs.createBinding(null, cmd, ID_WINDOW, schemeOnly); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
39. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 80) Binding b = bs.createBinding(seq, null, ID_WINDOW, schemeOnly); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
40. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 85) Binding b = bs.createBinding(seq, cmd, null, schemeOnly); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
41. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 90) Binding b = bs.createBinding(seq, cmd, ID_WINDOW, null); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
42. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 103) Binding b = bs.createBinding(emptySeq, cmd, ID_WINDOW, null); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
43. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 108) Binding b = bs.createBinding(seq, cmd, ID_WINDOW, emptyAttrs); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
44. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 121) Binding b = bs.createBinding(seq, cmd, ID_WINDOW, schemeOnly); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
45. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingCreateTest.java (at line 134) Binding b = bs.createBinding(seq, cmd, ID_WINDOW, schemeAndTypeAttrs); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 14) import org.eclipse.e4.core.commands.CommandServiceAddon; Discouraged access: The type CommandServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 15) import org.eclipse.e4.core.commands.ECommandService; Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
3. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 16) import org.eclipse.e4.core.contexts.ContextInjectionFactory; Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
4. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 17) import org.eclipse.e4.core.contexts.IEclipseContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
5. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 18) import org.eclipse.e4.ui.bindings.BindingServiceAddon; Discouraged access: The type BindingServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
6. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 19) import org.eclipse.e4.ui.bindings.EBindingService; Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
7. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 20) import org.eclipse.e4.ui.bindings.internal.BindingTable; Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
8. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 21) import org.eclipse.e4.ui.bindings.internal.BindingTableManager; Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
9. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 22) import org.eclipse.e4.ui.bindings.internal.ContextSet; Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
10. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 23) import org.eclipse.e4.ui.internal.services.ActiveContextsFunction; Discouraged access: The type ActiveContextsFunction is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
11. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 24) import org.eclipse.e4.ui.services.ContextServiceAddon; Discouraged access: The type ContextServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
12. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 25) import org.eclipse.e4.ui.services.EContextService; Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
13. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 26) import org.eclipse.e4.ui.services.IServiceConstants; Discouraged access: The type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
14. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 47) private IEclipseContext workbenchContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
15. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 49) private void defineCommands(IEclipseContext context) { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
16. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 50) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
17. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 50) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
18. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 50) ECommandService cs = (ECommandService) workbenchContext .get(ECommandService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
19. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 51) .get(ECommandService.class.getName()); Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
20. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 52) Category category = cs.defineCategory(TEST_CAT1, "CAT1", null); Discouraged access: The method defineCategory(String, String, String) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
21. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 53) cs.defineCommand(TEST_ID1, "ID1", null, category, null); Discouraged access: The method defineCommand(String, String, String, Category, IParameter[]) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
22. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 54) cs.defineCommand(TEST_ID2, "ID2", null, category, null); Discouraged access: The method defineCommand(String, String, String, Category, IParameter[]) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
23. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 59) IEclipseContext globalContext = Activator.getDefault() Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
24. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 61) workbenchContext = globalContext.createChild("workbenchContext"); Discouraged access: The method createChild(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
25. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 62) ContextInjectionFactory.make(CommandServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<CommandServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
26. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 62) ContextInjectionFactory.make(CommandServiceAddon.class, Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
27. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 62) ContextInjectionFactory.make(CommandServiceAddon.class, Discouraged access: The type CommandServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
28. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 64) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<ContextServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
29. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 64) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
30. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 64) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The type ContextServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
31. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 65) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<BindingServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
32. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 65) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
33. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 65) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The type BindingServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
34. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 72) private void defineContexts(IEclipseContext context) { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
35. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 73) ContextManager contextManager = context.get(ContextManager.class); Discouraged access: The method get(Class<ContextManager>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
36. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 79) EContextService cs = (EContextService) context Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
37. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 79) EContextService cs = (EContextService) context Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
38. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 79) EContextService cs = (EContextService) context .get(EContextService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
39. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 80) .get(EContextService.class.getName()); Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
40. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 81) cs.activateContext(ID_DIALOG_AND_WINDOW); Discouraged access: The method activateContext(String) from the type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
41. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 84) private void defineBindingTables(IEclipseContext context) { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
42. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 85) BindingTableManager btm = context.get(BindingTableManager.class); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
43. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 85) BindingTableManager btm = context.get(BindingTableManager.class); Discouraged access: The method get(Class<BindingTableManager>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
44. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 85) BindingTableManager btm = context.get(BindingTableManager.class); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
45. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 86) ContextManager cm = context.get(ContextManager.class); Discouraged access: The method get(Class<ContextManager>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
46. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 87) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG_AND_WINDOW))); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
47. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 87) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG_AND_WINDOW))); Discouraged access: The constructor BindingTable(Context) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
48. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 87) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG_AND_WINDOW))); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
49. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 88) btm.addTable(new BindingTable(cm.getContext(ID_WINDOW))); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
50. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 88) btm.addTable(new BindingTable(cm.getContext(ID_WINDOW))); Discouraged access: The constructor BindingTable(Context) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
51. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 88) btm.addTable(new BindingTable(cm.getContext(ID_WINDOW))); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
52. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 89) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG))); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
53. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 89) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG))); Discouraged access: The constructor BindingTable(Context) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
54. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 89) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG))); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
55. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 94) workbenchContext.dispose(); Discouraged access: The method dispose() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
56. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 99) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
57. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 99) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
58. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 99) ECommandService cs = (ECommandService) workbenchContext .get(ECommandService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
59. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 100) .get(ECommandService.class.getName()); Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
60. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 101) ParameterizedCommand cmd = cs.createCommand(TEST_ID1, null); Discouraged access: The method createCommand(String, Map) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
61. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 102) EBindingService bs = (EBindingService) workbenchContext Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
62. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 102) EBindingService bs = (EBindingService) workbenchContext Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
63. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 102) EBindingService bs = (EBindingService) workbenchContext .get(EBindingService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
64. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 103) .get(EBindingService.class.getName()); Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
65. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 104) TriggerSequence seq = bs.createSequence("CTRL+5 T"); Discouraged access: The method createSequence(String) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
66. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 106) bs.activateBinding(db); Discouraged access: The method activateBinding(Binding) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
67. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 107) Binding perfectMatch = bs.getPerfectMatch(seq); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
68. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 109) bs.deactivateBinding(db); Discouraged access: The method deactivateBinding(Binding) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
69. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 110) assertNull(bs.getPerfectMatch(seq)); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
70. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 112) bs.activateBinding(db); Discouraged access: The method activateBinding(Binding) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
71. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 113) assertEquals(cmd, bs.getPerfectMatch(seq).getParameterizedCommand()); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
72. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 117) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
73. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 117) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
74. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 117) ECommandService cs = (ECommandService) workbenchContext .get(ECommandService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
75. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 118) .get(ECommandService.class.getName()); Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
76. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 119) ParameterizedCommand cmd = cs.createCommand(TEST_ID1, null); Discouraged access: The method createCommand(String, Map) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
77. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 120) EBindingService bs = (EBindingService) workbenchContext Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
78. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 120) EBindingService bs = (EBindingService) workbenchContext Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
79. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 120) EBindingService bs = (EBindingService) workbenchContext .get(EBindingService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
80. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 121) .get(EBindingService.class.getName()); Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
81. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 122) TriggerSequence seq = bs.createSequence("CTRL+5 T"); Discouraged access: The method createSequence(String) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
82. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 123) TriggerSequence seq2 = bs.createSequence("CTRL+2 X"); Discouraged access: The method createSequence(String) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
83. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 125) bs.activateBinding(db); Discouraged access: The method activateBinding(Binding) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
84. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 127) bs.activateBinding(db); Discouraged access: The method activateBinding(Binding) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
85. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 129) assertEquals(cmd, bs.getPerfectMatch(seq).getParameterizedCommand()); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
86. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 130) assertEquals(cmd, bs.getPerfectMatch(seq2).getParameterizedCommand()); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
87. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 134) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
88. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 134) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
89. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 134) ECommandService cs = (ECommandService) workbenchContext .get(ECommandService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
90. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 135) .get(ECommandService.class.getName()); Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
91. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 136) ParameterizedCommand cmd = cs.createCommand(TEST_ID1, null); Discouraged access: The method createCommand(String, Map) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
92. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 137) IEclipseContext c1 = workbenchContext.createChild("c1"); Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
93. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 137) IEclipseContext c1 = workbenchContext.createChild("c1"); Discouraged access: The method createChild(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
94. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 138) c1.activate(); Discouraged access: The method activate() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
95. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 140) EBindingService bs1 = (EBindingService) c1.get(EBindingService.class Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
96. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 140) EBindingService bs1 = (EBindingService) c1.get(EBindingService.class Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
97. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java (at line 140) EBindingService bs1 = (EBindingService) c1.get(EBindingService.class .getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 16) import org.eclipse.e4.core.contexts.ContextInjectionFactory; Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 17) import org.eclipse.e4.core.contexts.IEclipseContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
3. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 18) import org.eclipse.e4.ui.bindings.internal.BindingTable; Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
4. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 19) import org.eclipse.e4.ui.bindings.internal.BindingTableManager; Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
5. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 20) import org.eclipse.e4.ui.bindings.internal.ContextSet; Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
6. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 70) static IEclipseContext workbenchContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
7. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 75) IEclipseContext globalContext = Activator.getDefault().getGlobalContext(); Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
8. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 76) workbenchContext = globalContext.createChild("workbenchContext"); Discouraged access: The method createChild(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
9. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 79) ContextSet.setComparator(new ContextSet.CComp(contextManager)); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
10. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 79) ContextSet.setComparator(new ContextSet.CComp(contextManager)); Discouraged access: The method setComparator(Comparator<Context>) from the type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
11. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 79) ContextSet.setComparator(new ContextSet.CComp(contextManager)); Discouraged access: The constructor ContextSet.CComp(ContextManager) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
12. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 79) ContextSet.setComparator(new ContextSet.CComp(contextManager)); Discouraged access: The type ContextSet.CComp is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
13. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 79) ContextSet.setComparator(new ContextSet.CComp(contextManager)); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
14. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 108) BindingTable table = loadTable(ID_DIALOG_AND_WINDOW); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
15. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 111) Binding match = table.getPerfectMatch(aboutSeq); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
16. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 113) assertEquals(aboutSeq, table.getBestSequenceFor( about.getParameterizedCommand()).getTriggerSequence()); Discouraged access: The method getBestSequenceFor(ParameterizedCommand) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
17. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 116) Collection<Binding> sequences = table.getSequencesFor(about .getParameterizedCommand()); Discouraged access: The method getSequencesFor(ParameterizedCommand) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
18. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 122) Collection<Binding> partialMatches = table.getPartialMatches(prefix); Discouraged access: The method getPartialMatches(TriggerSequence) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
19. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 128) BindingTable table = loadTable(ID_WINDOW); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
20. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 133) Binding match1 = table.getPerfectMatch(ctrlV); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
21. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 135) Binding match2 = table.getPerfectMatch(shiftIns); Discouraged access: The method getPerfectMatch(TriggerSequence) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
22. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 141) BindingTable table = loadTable(ID_WINDOW); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
23. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 144) Binding match = table.getBestSequenceFor(paste .getParameterizedCommand()); Discouraged access: The method getBestSequenceFor(ParameterizedCommand) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
24. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 150) BindingTable table = loadTable(ID_WINDOW); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
25. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 153) Collection<Binding> sequences = table.getSequencesFor(paste .getParameterizedCommand()); Discouraged access: The method getSequencesFor(ParameterizedCommand) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
26. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 164) BindingTable table = loadTable(ID_DIALOG_AND_WINDOW); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
27. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 168) assertTrue(table.isPartialMatch(ctrl5)); Discouraged access: The method isPartialMatch(TriggerSequence) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
28. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 169) assertFalse(table.isPartialMatch(ctrl8)); Discouraged access: The method isPartialMatch(TriggerSequence) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
29. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 173) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
30. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 173) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
31. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 173) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
32. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 173) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory .make(BindingTableManager.class, workbenchContext); Discouraged access: The method make(Class<BindingTableManager>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
33. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 174) .make(BindingTableManager.class, workbenchContext); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
34. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 180) ContextSet windowSet = manager.createContextSet(window); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
35. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 180) ContextSet windowSet = manager.createContextSet(window); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
36. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 187) ContextSet textSet = manager.createContextSet(text); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
37. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 187) ContextSet textSet = manager.createContextSet(text); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
38. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 193) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
39. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 193) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
40. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 193) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory .make(BindingTableManager.class, workbenchContext); Discouraged access: The method make(Class<BindingTableManager>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
41. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 193) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
42. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 194) .make(BindingTableManager.class, workbenchContext); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
43. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 200) ContextSet set = manager.createContextSet(all); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
44. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 200) ContextSet set = manager.createContextSet(all); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
45. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 205) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
46. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 205) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
47. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 205) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
48. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 205) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory .make(BindingTableManager.class, workbenchContext); Discouraged access: The method make(Class<BindingTableManager>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
49. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 206) .make(BindingTableManager.class, workbenchContext); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
50. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 208) manager.addTable(loadTable(ID_DIALOG_AND_WINDOW)); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
51. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 209) manager.addTable(loadTable(ID_WINDOW)); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
52. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 210) manager.addTable(loadTable(ID_TEXT)); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
53. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 217) ContextSet windowSet = manager.createContextSet(window); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
54. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 217) ContextSet windowSet = manager.createContextSet(window); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
55. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 222) ContextSet textSet = manager.createContextSet(text); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
56. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 222) ContextSet textSet = manager.createContextSet(text); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
57. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 229) Binding match = manager.getPerfectMatch(windowSet, rename .getTriggerSequence()); Discouraged access: The method getPerfectMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
58. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 233) match = manager.getPerfectMatch(textSet, rename.getTriggerSequence()); Discouraged access: The method getPerfectMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
59. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 237) match = manager.getPerfectMatch(textSet, about.getTriggerSequence()); Discouraged access: The method getPerfectMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
60. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 242) BindingTableManager manager = createManager(); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
61. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 254) ContextSet set = manager.createContextSet(all); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
62. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 254) ContextSet set = manager.createContextSet(all); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
63. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 255) Binding match = manager.getPerfectMatch(set, correctIndent .getTriggerSequence()); Discouraged access: The method getPerfectMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
64. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 261) BindingTableManager manager = createManager(); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
65. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 268) ContextSet javaSet = createJavaSet(manager); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
66. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 277) ContextSet jsSet = manager.createContextSet(jsList); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
67. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 277) ContextSet jsSet = manager.createContextSet(jsList); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
68. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 279) Binding match = manager.getPerfectMatch(javaSet, correctIndent .getTriggerSequence()); Discouraged access: The method getPerfectMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
69. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 283) match = manager.getPerfectMatch(jsSet, correctIndent .getTriggerSequence()); Discouraged access: The method getPerfectMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
70. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 289) BindingTableManager manager = createManager(); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
71. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 297) ContextSet windowSet = manager.createContextSet(window); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
72. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 297) ContextSet windowSet = manager.createContextSet(window); Discouraged access: The method createContextSet(Collection<Context>) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
73. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 299) Binding match = manager.getBestSequenceFor(windowSet, paste .getParameterizedCommand()); Discouraged access: The method getBestSequenceFor(ContextSet, ParameterizedCommand) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
74. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 305) BindingTableManager manager = createManager(); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
75. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 308) ContextSet javaSet = createJavaSet(manager); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
76. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 310) Binding match = manager.getBestSequenceFor(javaSet, paste .getParameterizedCommand()); Discouraged access: The method getBestSequenceFor(ContextSet, ParameterizedCommand) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
77. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 316) BindingTableManager manager = createManager(); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
78. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 319) ContextSet javaSet = createJavaSet(manager); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
79. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 321) Collection<Binding> sequences = manager.getSequencesFor(javaSet, paste .getParameterizedCommand()); Discouraged access: The method getSequencesFor(ContextSet, ParameterizedCommand) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
80. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 334) BindingTableManager manager = createManager(); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
81. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 337) ContextSet javaSet = createJavaSet(manager); Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
82. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 338) Binding pasteCtrl5 = manager.getPerfectMatch(javaSet, KeySequence .getInstance("CTRL+5 V")); Discouraged access: The method getPerfectMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
83. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 345) assertTrue(manager.isPartialMatch(javaSet, ctrl5)); Discouraged access: The method isPartialMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
84. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 346) assertFalse(manager.isPartialMatch(javaSet, ctrl8)); Discouraged access: The method isPartialMatch(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
85. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 348) Collection<Binding> partialMatches = manager.getPartialMatches(javaSet, ctrl5); Discouraged access: The method getPartialMatches(ContextSet, TriggerSequence) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
86. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 356) private BindingTable loadTable(String contextId) { Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
87. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 358) BindingTable table = new BindingTable(context); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
88. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 358) BindingTable table = new BindingTable(context); Discouraged access: The constructor BindingTable(Context) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
89. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 358) BindingTable table = new BindingTable(context); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
90. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 361) table.addBinding(b); Discouraged access: The method addBinding(Binding) from the type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
91. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 376) private void assertContextSet(ContextSet set, String[] contextIds) { Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
92. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 377) List<Context> contexts = set.getContexts(); Discouraged access: The method getContexts() from the type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
93. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 384) private BindingTableManager createManager() throws Exception { Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
94. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 385) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
95. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 385) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
96. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 385) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
97. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 385) BindingTableManager manager = (BindingTableManager) ContextInjectionFactory .make(BindingTableManager.class, workbenchContext); Discouraged access: The method make(Class<BindingTableManager>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
98. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 386) .make(BindingTableManager.class, workbenchContext); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
99. WARNING in /src/org/eclipse/e4/ui/bindings/tests/BindingTableTests.java (at line 389) manager.addTable(loadTable(CONTEXTS[i])); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
1. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 12) import org.eclipse.e4.core.commands.CommandServiceAddon; Discouraged access: The type CommandServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
2. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 13) import org.eclipse.e4.core.commands.ECommandService; Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
3. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 14) import org.eclipse.e4.core.commands.EHandlerService; Discouraged access: The type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
4. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 15) import org.eclipse.e4.core.contexts.ContextInjectionFactory; Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
5. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 16) import org.eclipse.e4.core.contexts.IEclipseContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
6. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 17) import org.eclipse.e4.core.di.annotations.CanExecute; Discouraged access: The type CanExecute is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.di_0.9.0.v20110517-2030.jar |
7. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 18) import org.eclipse.e4.core.di.annotations.Execute; Discouraged access: The type Execute is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.di_0.9.0.v20110517-2030.jar |
8. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 19) import org.eclipse.e4.ui.bindings.BindingServiceAddon; Discouraged access: The type BindingServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
9. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 20) import org.eclipse.e4.ui.bindings.EBindingService; Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
10. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 21) import org.eclipse.e4.ui.bindings.internal.BindingTable; Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
11. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 22) import org.eclipse.e4.ui.bindings.internal.BindingTableManager; Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
12. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 23) import org.eclipse.e4.ui.bindings.internal.ContextSet; Discouraged access: The type ContextSet is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
13. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 24) import org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher; Discouraged access: The type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
14. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 25) import org.eclipse.e4.ui.internal.services.ActiveContextsFunction; Discouraged access: The type ActiveContextsFunction is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
15. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 26) import org.eclipse.e4.ui.services.ContextServiceAddon; Discouraged access: The type ContextServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
16. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 27) import org.eclipse.e4.ui.services.EContextService; Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
17. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 28) import org.eclipse.e4.ui.services.IServiceConstants; Discouraged access: The type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
18. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 56) @CanExecute Discouraged access: The type CanExecute is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.di_0.9.0.v20110517-2030.jar |
19. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 62) @Execute Discouraged access: The type Execute is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.di_0.9.0.v20110517-2030.jar |
20. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 73) private IEclipseContext workbenchContext; Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
21. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 77) private void defineCommands(IEclipseContext context) { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
22. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 78) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
23. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 78) ECommandService cs = (ECommandService) workbenchContext Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
24. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 78) ECommandService cs = (ECommandService) workbenchContext .get(ECommandService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
25. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 79) .get(ECommandService.class.getName()); Discouraged access: The type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
26. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 80) Category category = cs.defineCategory(TEST_CAT1, "CAT1", null); Discouraged access: The method defineCategory(String, String, String) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
27. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 81) cs.defineCommand(TEST_ID1, "ID1", null, category, null); Discouraged access: The method defineCommand(String, String, String, Category, IParameter[]) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
28. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 82) cs.defineCommand(TEST_ID2, "ID2", null, category, null); Discouraged access: The method defineCommand(String, String, String, Category, IParameter[]) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
29. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 83) ParameterizedCommand cmd = cs.createCommand(TEST_ID1, null); Discouraged access: The method createCommand(String, Map) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
30. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 84) EHandlerService hs = (EHandlerService) workbenchContext Discouraged access: The type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
31. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 84) EHandlerService hs = (EHandlerService) workbenchContext Discouraged access: The type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
32. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 84) EHandlerService hs = (EHandlerService) workbenchContext .get(EHandlerService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
33. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 85) .get(EHandlerService.class.getName()); Discouraged access: The type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
34. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 87) hs.activateHandler(TEST_ID1, handler); Discouraged access: The method activateHandler(String, Object) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
35. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 88) EBindingService bs = (EBindingService) workbenchContext Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
36. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 88) EBindingService bs = (EBindingService) workbenchContext Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
37. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 88) EBindingService bs = (EBindingService) workbenchContext .get(EBindingService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
38. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 89) .get(EBindingService.class.getName()); Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
39. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 90) TriggerSequence seq = bs.createSequence("CTRL+A"); Discouraged access: The method createSequence(String) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
40. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 92) bs.activateBinding(db); Discouraged access: The method activateBinding(Binding) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
41. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 94) ParameterizedCommand cmd2 = cs.createCommand(TEST_ID2, null); Discouraged access: The method createCommand(String, Map) from the type ECommandService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
42. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 96) hs.activateHandler(TEST_ID2, twoStrokeHandler); Discouraged access: The method activateHandler(String, Object) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
43. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 97) TriggerSequence twoKeys = bs.createSequence("CTRL+5 CTRL+A"); Discouraged access: The method createSequence(String) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
44. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 99) bs.activateBinding(db); Discouraged access: The method activateBinding(Binding) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
45. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 102) private Binding createDefaultBinding(EBindingService bs, Discouraged access: The type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
46. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 108) return bs.createBinding(sequence, command, ID_WINDOW, attrs); Discouraged access: The method createBinding(TriggerSequence, ParameterizedCommand, String, Map<String,String>) from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
47. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 114) IEclipseContext globalContext = Activator.getDefault().getGlobalContext(); Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
48. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 115) workbenchContext = globalContext.createChild("workbenchContext"); Discouraged access: The method createChild(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
49. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 116) ContextInjectionFactory.make(CommandServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<CommandServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
50. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 116) ContextInjectionFactory.make(CommandServiceAddon.class, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
51. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 116) ContextInjectionFactory.make(CommandServiceAddon.class, workbenchContext); Discouraged access: The type CommandServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.commands_0.9.0.v20110517-2030.jar |
52. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 117) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<ContextServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
53. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 117) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
54. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 117) ContextInjectionFactory.make(ContextServiceAddon.class, workbenchContext); Discouraged access: The type ContextServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
55. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 118) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The method make(Class<BindingServiceAddon>, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
56. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 118) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
57. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 118) ContextInjectionFactory.make(BindingServiceAddon.class, workbenchContext); Discouraged access: The type BindingServiceAddon is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
58. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 124) private void defineContexts(IEclipseContext context) { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
59. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 125) ContextManager contextManager = context.get(ContextManager.class); Discouraged access: The method get(Class<ContextManager>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
60. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 131) EContextService cs = (EContextService) context Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
61. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 131) EContextService cs = (EContextService) context Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
62. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 131) EContextService cs = (EContextService) context .get(EContextService.class.getName()); Discouraged access: The method get(String) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
63. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 132) .get(EContextService.class.getName()); Discouraged access: The type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
64. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 133) cs.activateContext(ID_DIALOG_AND_WINDOW); Discouraged access: The method activateContext(String) from the type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
65. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 134) cs.activateContext(ID_WINDOW); Discouraged access: The method activateContext(String) from the type EContextService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.services_0.9.1.v20110517-2030.jar |
66. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 137) private void defineBindingTables(IEclipseContext context) { Discouraged access: The type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
67. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 138) BindingTableManager btm = context.get(BindingTableManager.class); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
68. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 138) BindingTableManager btm = context.get(BindingTableManager.class); Discouraged access: The method get(Class<BindingTableManager>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
69. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 138) BindingTableManager btm = context.get(BindingTableManager.class); Discouraged access: The type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
70. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 139) ContextManager cm = context .get(ContextManager.class); Discouraged access: The method get(Class<ContextManager>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
71. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 141) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG_AND_WINDOW))); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
72. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 141) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG_AND_WINDOW))); Discouraged access: The constructor BindingTable(Context) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
73. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 141) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG_AND_WINDOW))); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
74. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 142) btm.addTable(new BindingTable(cm.getContext(ID_WINDOW))); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
75. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 142) btm.addTable(new BindingTable(cm.getContext(ID_WINDOW))); Discouraged access: The constructor BindingTable(Context) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
76. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 142) btm.addTable(new BindingTable(cm.getContext(ID_WINDOW))); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
77. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 143) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG))); Discouraged access: The method addTable(BindingTable) from the type BindingTableManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
78. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 143) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG))); Discouraged access: The constructor BindingTable(Context) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
79. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 143) btm.addTable(new BindingTable(cm.getContext(ID_DIALOG))); Discouraged access: The type BindingTable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
80. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 148) workbenchContext.dispose(); Discouraged access: The method dispose() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
81. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 155) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
82. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 155) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The constructor KeyBindingDispatcher() is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
83. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 155) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
84. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 156) ContextInjectionFactory.inject(dispatcher, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
85. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 156) ContextInjectionFactory.inject(dispatcher, workbenchContext); Discouraged access: The method inject(Object, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
86. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 157) final Listener listener = dispatcher.getKeyDownFilter(); Discouraged access: The method getKeyDownFilter() from the type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
87. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 180) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
88. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 180) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The constructor KeyBindingDispatcher() is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
89. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 180) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
90. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 181) ContextInjectionFactory.inject(dispatcher, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
91. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 181) ContextInjectionFactory.inject(dispatcher, workbenchContext); Discouraged access: The method inject(Object, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
92. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 182) final Listener listener = dispatcher.getKeyDownFilter(); Discouraged access: The method getKeyDownFilter() from the type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
93. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 221) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
94. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 221) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The constructor KeyBindingDispatcher() is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
95. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 221) KeyBindingDispatcher dispatcher = new KeyBindingDispatcher(); Discouraged access: The type KeyBindingDispatcher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.ui.bindings_0.9.0.v20110517-2030.jar |
96. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 222) ContextInjectionFactory.inject(dispatcher, workbenchContext); Discouraged access: The type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |
97. WARNING in /src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java (at line 222) ContextInjectionFactory.inject(dispatcher, workbenchContext); Discouraged access: The method inject(Object, IEclipseContext) from the type ContextInjectionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110516/plugins/org.eclipse.e4.core.contexts_0.9.0.v20110517-2030.jar |