Compiler log for org.eclipse.e4.core.commands.tests_0.9.0.v20101006-1500 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 161

errors others warnings forbidden warnings discouraged warnings

ERRORS

top others warnings forbidden warnings discouraged warnings

OTHER WARNINGS

top errors forbidden warnings discouraged warnings

/src/org/eclipse/e4/core/commands/tests/TestActivator.java : 17 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 44)
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/core/commands/tests/TestActivator.java
 (at line 49)
public void log(ServiceReference sr, int level, String message,
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings

/src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java : 44 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 7)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
2. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 8)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 17)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
4. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 17)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
5. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 17)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
6. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 18)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
7. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 20)
assertNotNull(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
8. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 21)
Category category = cs.getCategory(TEST_CAT1);
Discouraged access: The method getCategory(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
9. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 23)
assertNotNull("command1", 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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
10. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 25)
assertNotNull("command2", 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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
11. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 28)
Command cmd1 = cs.getCommand(TEST_ID1);
Discouraged access: The method getCommand(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
12. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 31)
assertNotNull("get command2", cs.getCommand(TEST_ID2));
Discouraged access: The method getCommand(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
13. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 33)
assertNotNull("parameterized command", 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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
14. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 37)
IEclipseContext localContext = workbenchContext.createChild();
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
15. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 37)
IEclipseContext localContext = workbenchContext.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
16. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 38)
ECommandService cs = (ECommandService) localContext
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
17. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 38)
ECommandService cs = (ECommandService) localContext
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
18. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 38)
ECommandService cs = (ECommandService) localContext .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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
19. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 39)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
20. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 41)
assertNotNull(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
21. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 42)
Category category = cs.getCategory(TEST_CAT1);
Discouraged access: The method getCategory(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
22. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 44)
assertNotNull("command1", 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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
23. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 46)
assertNotNull("command2", 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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
24. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 49)
Command cmd1 = cs.getCommand(TEST_ID1);
Discouraged access: The method getCommand(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
25. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 52)
assertNotNull("get command2", cs.getCommand(TEST_ID2));
Discouraged access: The method getCommand(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
26. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 56)
IEclipseContext localContext = workbenchContext.createChild("Level1");
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
27. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 56)
IEclipseContext localContext = workbenchContext.createChild("Level1");
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
28. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 57)
ECommandService cs = (ECommandService) localContext
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
29. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 57)
ECommandService cs = (ECommandService) localContext
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
30. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 57)
ECommandService cs = (ECommandService) localContext .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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
31. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 58)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
32. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 60)
assertNotNull(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
33. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 61)
Category category = cs.getCategory(TEST_CAT1);
Discouraged access: The method getCategory(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
34. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 63)
assertNotNull("command1", 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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
35. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 65)
assertNotNull("command2", 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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
36. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 68)
cs = (ECommandService) workbenchContext.get(ECommandService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
37. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 68)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
38. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 68)
cs = (ECommandService) workbenchContext.get(ECommandService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
39. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 70)
Command cmd1 = cs.getCommand(TEST_ID1);
Discouraged access: The method getCommand(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
40. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 73)
assertNotNull("get command2", cs.getCommand(TEST_ID2));
Discouraged access: The method getCommand(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
41. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 76)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
42. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 80)
IEclipseContext globalContext = TestActivator.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
43. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 81)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
44. WARNING in /src/org/eclipse/e4/core/commands/tests/DefineCommandsTest.java
 (at line 86)
workbenchContext.dispose();
Discouraged access: The method dispose() from the type IDisposable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot

/src/org/eclipse/e4/core/commands/tests/HandlerTest.java : 100 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 25)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
2. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 26)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
3. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 27)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
4. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 28)
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/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
5. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 29)
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/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
6. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 30)
import org.eclipse.e4.core.di.annotations.Optional;
Discouraged access: The type Optional is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
7. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 44)
@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/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
8. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 50)
@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/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
9. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 61)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
10. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 61)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
11. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 61)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
12. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 62)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
13. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 64)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
14. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 67)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
15. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 67)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
16. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 67)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
17. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 68)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
18. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 69)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
19. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 70)
assertTrue(hs.canExecute(cmd));
Discouraged access: The method canExecute(ParameterizedCommand) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
20. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 72)
assertEquals(Boolean.TRUE, hs.executeHandler(cmd));
Discouraged access: The method executeHandler(ParameterizedCommand) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
21. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 78)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
22. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 78)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
23. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 78)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
24. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 79)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
25. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 81)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
26. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 84)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
27. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 84)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
28. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 84)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
29. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 85)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
30. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 86)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
31. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 87)
assertTrue(hs.canExecute(cmd));
Discouraged access: The method canExecute(ParameterizedCommand) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
32. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 89)
hs.deactivateHandler(TEST_ID1, handler);
Discouraged access: The method deactivateHandler(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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
33. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 90)
assertNull(hs.executeHandler(cmd));
Discouraged access: The method executeHandler(ParameterizedCommand) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
34. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 96)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
35. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 96)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
36. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 97)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
37. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 98)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
38. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 98)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
39. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 98)
EHandlerService h1 = (EHandlerService) c1.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
40. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 98)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
41. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 101)
h1.activateHandler(TEST_ID1, handler1);
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
42. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 102)
ECommandService cs = (ECommandService) c1.get(ECommandService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
43. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 102)
ECommandService cs = (ECommandService) c1.get(ECommandService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
44. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 102)
ECommandService cs = (ECommandService) c1.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
45. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 102)
ECommandService cs = (ECommandService) c1.get(ECommandService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
46. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 104)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
47. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 105)
assertTrue(h1.canExecute(cmd));
Discouraged access: The method canExecute(ParameterizedCommand) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
48. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 106)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
49. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 106)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
50. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 106)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
51. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 107)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
52. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 108)
assertTrue(wHS.canExecute(cmd));
Discouraged access: The method canExecute(ParameterizedCommand) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
53. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 112)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
54. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 112)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
55. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 112)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
56. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 113)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
57. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 114)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
58. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 115)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
59. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 115)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
60. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 115)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
61. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 116)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
62. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 118)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
63. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 118)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
64. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 119)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
65. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 120)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
66. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 120)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
67. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 120)
EHandlerService h1 = (EHandlerService) c1.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
68. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 120)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
69. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 123)
h1.activateHandler(TEST_ID1, handler1);
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
70. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 125)
IEclipseContext c2 = workbenchContext.createChild("c2");
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
71. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 125)
IEclipseContext c2 = workbenchContext.createChild("c2");
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
72. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 126)
EHandlerService h2 = (EHandlerService) c2.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
73. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 126)
EHandlerService h2 = (EHandlerService) c2.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
74. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 126)
EHandlerService h2 = (EHandlerService) c2.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
75. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 126)
EHandlerService h2 = (EHandlerService) c2.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
76. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 129)
h2.activateHandler(TEST_ID1, handler2);
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
77. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 133)
assertEquals(Boolean.TRUE, wHS.executeHandler(cmd));
Discouraged access: The method executeHandler(ParameterizedCommand) from the type EHandlerService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
78. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 141)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
79. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 141)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
80. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 141)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
81. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 142)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
82. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 143)
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
83. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 144)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
84. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 144)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
85. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 144)
EHandlerService wHS = (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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
86. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 145)
.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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
87. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 147)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
88. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 147)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
89. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 148)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
90. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 149)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
91. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 149)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
92. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 149)
EHandlerService h1 = (EHandlerService) c1.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
93. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 149)
EHandlerService h1 = (EHandlerService) c1.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
94. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 152)
h1.activateHandler(TEST_ID1, handler1);
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
95. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 154)
IEclipseContext c2 = workbenchContext.createChild("c2");
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
96. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 154)
IEclipseContext c2 = workbenchContext.createChild("c2");
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
97. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 155)
EHandlerService h2 = (EHandlerService) c2.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
98. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 155)
EHandlerService h2 = (EHandlerService) c2.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot
99. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 155)
EHandlerService h2 = (EHandlerService) c2.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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
100. WARNING in /src/org/eclipse/e4/core/commands/tests/HandlerTest.java
 (at line 155)
EHandlerService h2 = (EHandlerService) c2.get(EHandlerService.class
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/I20101029-1030/plugins/org.eclipse.e4.core.commands/@dot

/src/org/eclipse/e4/core/commands/tests/TestActivator.java : 17 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 3)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 4)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 5)
import org.eclipse.e4.core.di.IDisposable;
Discouraged access: The type IDisposable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
4. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 16)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
5. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 17)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
6. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 25)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
7. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 25)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
8. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 26)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
9. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 30)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
10. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 31)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
11. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 58)
if (serviceContext instanceof IDisposable) {
Discouraged access: The type IDisposable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
12. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 59)
((IDisposable) serviceContext).dispose();
Discouraged access: The method dispose() from the type IDisposable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
13. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 59)
((IDisposable) serviceContext).dispose();
Discouraged access: The type IDisposable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20101029-1030/plugins/org.eclipse.e4.core.di/@dot
14. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 64)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot
15. WARNING in /src/org/eclipse/e4/core/commands/tests/TestActivator.java
 (at line 69)
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/I20101029-1030/plugins/org.eclipse.e4.core.contexts/@dot