Compiler log for org.eclipse.e4.ui.workbench.swt_0.9.1.v20100618-1630 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 644

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/ui/internal/workbench/swt/PartRenderingEngine.java : 100 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 157)
MElementContainer<MUIElement> changedElement = (MElementContainer<MUIElement>) changedObj;
Type safety: Unchecked cast from Object to MElementContainer<MUIElement>

/src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java : 7 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java
 (at line 46)
public Iterator iterator() {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java
 (at line 54)
private static final Class[] CLASSES = new Class[] { IIterable.class,
Class is a raw type. References to generic type Class<T> should be parameterized
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java
 (at line 57)
public Object getAdapter(Object adaptableObject, Class adapterType) {
Class is a raw type. References to generic type Class<T> should be parameterized
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java
 (at line 74)
public Iterator iterator() {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java
 (at line 79)
final List list = Arrays.asList(new Object[] { sel });
List is a raw type. References to generic type List<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java
 (at line 82)
public Iterator iterator() {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/SelectionAdapterFactory.java
 (at line 103)
public Class[] getAdapterList() {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java : 10 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 32)
private Map cache = new HashMap();
Map is a raw type. References to generic type Map<K,V> should be parameterized
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 32)
private Map cache = new HashMap();
HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 37)
private Map foundAnyCache = new HashMap();
Map is a raw type. References to generic type Map<K,V> should be parameterized
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 37)
private Map foundAnyCache = new HashMap();
HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 83)
cache.put(parent, filtered);
Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 116)
foundAnyCache.put(parent, foundAny);
Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 303)
List words = new ArrayList();
List is a raw type. References to generic type List<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 303)
List words = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
9. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 323)
words.add(word);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
10. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/PatternFilter.java
 (at line 327)
return (String[]) words.toArray(new String[words.size()]);
Type safety: The method toArray(Object[]) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java : 30 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 378)
ArrayList descs = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 378)
ArrayList descs = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 380)
for (Iterator i = sel.iterator(); i.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 383)
descs.add(o);
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 388)
descs.toArray(viewDescs);
Type safety: The method toArray(Object[]) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/StringMatcher.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/StringMatcher.java
 (at line 309)
Vector temp = new Vector();
Vector is a raw type. References to generic type Vector<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/StringMatcher.java
 (at line 309)
Vector temp = new Vector();
Vector is a raw type. References to generic type Vector<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/StringMatcher.java
 (at line 334)
temp.addElement(buf.toString());
Type safety: The method addElement(Object) belongs to the raw type Vector. References to generic type Vector<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/StringMatcher.java
 (at line 350)
temp.addElement(buf.toString());
Type safety: The method addElement(Object) belongs to the raw type Vector. References to generic type Vector<E> should be parameterized

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java : 8 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 60)
return getComparator().compare(str1, str2);
Type safety: The method compare(Object, Object) belongs to the raw type Comparator. References to generic type Comparator<T> 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/ui/internal/workbench/swt/AbstractPartRenderer.java : 49 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 13)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 14)
import org.eclipse.e4.ui.model.application.ui.MContext;
Discouraged access: The type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 15)
import org.eclipse.e4.ui.model.application.ui.MElementContainer;
Discouraged access: The type MElementContainer<T> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 16)
import org.eclipse.e4.ui.model.application.ui.MUIElement;
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 17)
import org.eclipse.e4.ui.model.application.ui.MUILabel;
Discouraged access: The type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 18)
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
Discouraged access: The type MPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 19)
import org.eclipse.e4.ui.workbench.modeling.EModelService;
Discouraged access: The type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 20)
import org.eclipse.e4.ui.workbench.modeling.EPartService;
Discouraged access: The type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 25)
protected 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
10. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 26)
protected EModelService modelService;
Discouraged access: The type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 28)
public void init(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
12. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 30)
modelService = (EModelService) context.get(EModelService.class
Discouraged access: The type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 30)
modelService = (EModelService) context.get(EModelService.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
14. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 30)
modelService = (EModelService) context.get(EModelService.class
Discouraged access: The type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
15. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 34)
public abstract Object createWidget(MUIElement element, Object parent);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 36)
public abstract void processContents(MElementContainer<MUIElement> container);
Discouraged access: The type MElementContainer<MUIElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 36)
public abstract void processContents(MElementContainer<MUIElement> container);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 38)
public void postProcess(MUIElement childElement) {
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
19. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 41)
public abstract void bindWidget(MUIElement me, Object widget);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 43)
protected abstract Object getParentWidget(MUIElement element);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
21. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 45)
public abstract void disposeWidget(MUIElement part);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
22. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 47)
public abstract void hookControllerLogic(final MUIElement me);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
23. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 50)
MElementContainer<MUIElement> parentElement, MUIElement element);
Discouraged access: The type MElementContainer<MUIElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
24. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 50)
MElementContainer<MUIElement> parentElement, MUIElement element);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
25. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 50)
MElementContainer<MUIElement> parentElement, MUIElement element);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
26. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 52)
public void hideChild(MElementContainer<MUIElement> parentElement,
Discouraged access: The type MElementContainer<MUIElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
27. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 52)
public void hideChild(MElementContainer<MUIElement> parentElement,
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
28. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 53)
MUIElement child) {
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
29. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 56)
protected abstract Object getImage(MUILabel element);
Discouraged access: The type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
30. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 75)
protected IEclipseContext getContextForParent(MUIElement element) {
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
31. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 75)
protected IEclipseContext getContextForParent(MUIElement element) {
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
32. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 76)
return modelService.getContainingContext(element);
Discouraged access: The method getContainingContext(MUIElement) from the type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
33. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 86)
protected IEclipseContext getContext(MUIElement part) {
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
34. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 86)
protected IEclipseContext getContext(MUIElement part) {
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
35. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 87)
if (part instanceof MContext) {
Discouraged access: The type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
36. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 88)
return ((MContext) part).getContext();
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
37. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 88)
return ((MContext) part).getContext();
Discouraged access: The type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
38. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 99)
public void activate(MPart element) {
Discouraged access: The type MPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
39. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 100)
IEclipseContext curContext = getContext(element);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
40. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 102)
EPartService ps = (EPartService) curContext.get(EPartService.class
Discouraged access: The type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
41. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 102)
EPartService ps = (EPartService) curContext.get(EPartService.class
Discouraged access: The type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
42. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 102)
EPartService ps = (EPartService) curContext.get(EPartService.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
43. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 102)
EPartService ps = (EPartService) curContext.get(EPartService.class
Discouraged access: The type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
44. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 105)
ps.activate(element);
Discouraged access: The method activate(MPart) from the type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
45. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 109)
public void removeGui(MUIElement element, Object widget) {
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
46. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 112)
public Object getUIContainer(MUIElement element) {
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
47. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 113)
if (element.getParent() != null)
Discouraged access: The method getParent() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
48. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 114)
return element.getParent().getWidget();
Discouraged access: The method getParent() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
49. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/AbstractPartRenderer.java
 (at line 114)
return element.getParent().getWidget();
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java : 100 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 19)
import org.eclipse.e4.core.contexts.ContextFunction;
Discouraged access: The type ContextFunction is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 20)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 21)
import org.eclipse.e4.core.contexts.IContextConstants;
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 22)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 23)
import org.eclipse.e4.core.contexts.RunAndTrack;
Discouraged access: The type RunAndTrack is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 24)
import org.eclipse.e4.core.internal.services.EclipseAdapter;
Discouraged access: The type EclipseAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 25)
import org.eclipse.e4.core.services.adapter.Adapter;
Discouraged access: The type Adapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 26)
import org.eclipse.e4.core.services.contributions.IContributionFactory;
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 27)
import org.eclipse.e4.core.services.log.Logger;
Discouraged access: The type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
10. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 36)
import org.eclipse.e4.ui.model.application.MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 37)
import org.eclipse.e4.ui.model.application.MContribution;
Discouraged access: The type MContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
12. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 38)
import org.eclipse.e4.ui.model.application.ui.MContext;
Discouraged access: The type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 39)
import org.eclipse.e4.ui.model.application.ui.MElementContainer;
Discouraged access: The type MElementContainer<T> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 40)
import org.eclipse.e4.ui.model.application.ui.MUIElement;
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
15. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 41)
import org.eclipse.e4.ui.model.application.ui.advanced.MPerspective;
Discouraged access: The type MPerspective is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 42)
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
Discouraged access: The type MPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 43)
import org.eclipse.e4.ui.model.application.ui.basic.MWindow;
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 44)
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
19. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 45)
import org.eclipse.e4.ui.services.IStylingEngine;
Discouraged access: The type IStylingEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
20. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 46)
import org.eclipse.e4.ui.workbench.IExceptionHandler;
Discouraged access: The type IExceptionHandler is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
21. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 47)
import org.eclipse.e4.ui.workbench.IModelResourceHandler;
Discouraged access: The type IModelResourceHandler is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
22. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 48)
import org.eclipse.e4.ui.workbench.modeling.EPartService;
Discouraged access: The type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
23. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 65)
private IModelResourceHandler handler;
Discouraged access: The type IModelResourceHandler is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
24. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 83)
IEclipseContext workbenchContext = workbench.getContext();
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
25. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 84)
workbenchContext.set(Display.class, display);
Discouraged access: The method set(Class<Display>, Display) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
26. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 99)
handler.save();
Discouraged access: The method save() from the type IModelResourceHandler is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
27. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 110)
IEclipseContext appContext = createDefaultContext();
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
28. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 111)
appContext.set(IApplicationContext.class, applicationContext);
Discouraged access: The method set(Class<IApplicationContext>, IApplicationContext) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
29. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 114)
IContributionFactory factory = (IContributionFactory) appContext
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
30. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 114)
IContributionFactory factory = (IContributionFactory) appContext
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
31. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 114)
IContributionFactory factory = (IContributionFactory) appContext .get(IContributionFactory.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
32. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 115)
.get(IContributionFactory.class.getName());
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
33. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 123)
lcManager = factory.create(lifeCycleURI, appContext);
Discouraged access: The method create(String, IEclipseContext) from the type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
34. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 126)
factory.call(lcManager, null, "postContextCreate", appContext, null);
Discouraged access: The method call(Object, String, String, IEclipseContext, Object) from the type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
35. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 131)
MApplication appModel = loadApplicationModel(applicationContext,
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
36. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 133)
appModel.setContext(appContext);
Discouraged access: The method setContext(IEclipseContext) from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
37. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 137)
if (!E4Workbench.getServiceContext().containsKey( MApplication.class.getName())) {
Discouraged access: The method containsKey(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
38. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 138)
MApplication.class.getName())) {
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
39. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 140)
E4Workbench.getServiceContext().set(MApplication.class.getName(), appModel);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
40. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 140)
E4Workbench.getServiceContext().set(MApplication.class.getName(),
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
41. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 145)
appContext.set(MApplication.class.getName(), appModel);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
42. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 145)
appContext.set(MApplication.class.getName(), appModel);
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
43. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 149)
factory.call(lcManager, null, "processAdditions", appContext, null);
Discouraged access: The method call(Object, String, String, IEclipseContext, Object) from the type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
44. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 150)
factory.call(lcManager, null, "processRemovals", appContext, null);
Discouraged access: The method call(Object, String, String, IEclipseContext, Object) from the type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
45. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 154)
for (MContribution addon : appModel.getAddons()) {
Discouraged access: The type MContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
46. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 154)
for (MContribution addon : appModel.getAddons()) {
Discouraged access: The method getAddons() from the type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
47. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 155)
Object obj = factory.create(addon.getContributionURI(), appContext);
Discouraged access: The method create(String, IEclipseContext) from the type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
48. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 155)
Object obj = factory.create(addon.getContributionURI(), appContext);
Discouraged access: The method getContributionURI() from the type MContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
49. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 156)
addon.setObject(obj);
Discouraged access: The method setObject(Object) from the type MContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
50. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 162)
appContext.set(E4Workbench.XMI_URI_ARG, xmiURI);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
51. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 165)
appContext.set(E4Application.THEME_ID, themeId);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
52. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 169)
appContext.set(E4Workbench.CSS_URI_ARG, cssURI);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
53. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 178)
appContext.set(E4Application.THEME_ID, cssURI);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
54. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 183)
appContext.set(E4Workbench.CSS_RESOURCE_URI_ARG, cssResourcesURI);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
55. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 184)
appContext.set( E4Workbench.RENDERER_FACTORY_URI, getArgValue(E4Workbench.RENDERER_FACTORY_URI, applicationContext));
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
56. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 195)
appContext.set(E4Workbench.PRESENTATION_URI_ARG, presentationURI);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
57. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 203)
private MApplication loadApplicationModel(IApplicationContext appContext,
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
58. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 204)
IEclipseContext eclipseContext) {
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
59. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 205)
MApplication theApp = null;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
60. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 221)
eclipseContext.set(E4Workbench.SAVE_AND_RESTORE, Boolean.valueOf(saveAndRestore));
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
61. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 223)
eclipseContext.set(E4Workbench.INITIAL_WORKBENCH_MODEL_URI, initialWorkbenchDefinitionInstance);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
62. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 225)
eclipseContext.set(E4Workbench.INSTANCE_LOCATION, instanceLocation);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
63. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 235)
IContributionFactory factory = eclipseContext
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
64. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 235)
IContributionFactory factory = eclipseContext .get(IContributionFactory.class);
Discouraged access: The method get(Class<IContributionFactory>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
65. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 236)
.get(IContributionFactory.class);
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
66. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 238)
handler = (IModelResourceHandler) factory.create(resourceHandler,
Discouraged access: The type IModelResourceHandler is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
67. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 238)
handler = (IModelResourceHandler) factory.create(resourceHandler, eclipseContext);
Discouraged access: The method create(String, IEclipseContext) from the type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
68. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 241)
Resource resource = handler.loadMostRecentModel();
Discouraged access: The method loadMostRecentModel() from the type IModelResourceHandler is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
69. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 242)
theApp = (MApplication) resource.getContents().get(0);
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
70. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 263)
public static IEclipseContext createDefaultContext() {
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
71. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 267)
IEclipseContext serviceContext = E4Workbench.getServiceContext();
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
72. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 268)
final IEclipseContext appContext = 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
73. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 268)
final IEclipseContext appContext = serviceContext .createChild("WorkbenchContext"); //$NON-NLS-1$
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
74. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 276)
appContext.set(IContributionFactory.class.getName(), contributionFactory);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
75. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 276)
appContext.set(IContributionFactory.class.getName(),
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
76. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 279)
appContext .set(Logger.class.getName(), ContextInjectionFactory.make( WorkbenchLogger.class, appContext));
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
77. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 280)
.set(Logger.class.getName(), ContextInjectionFactory.make(
Discouraged access: The type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
78. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 280)
.set(Logger.class.getName(), ContextInjectionFactory.make( WorkbenchLogger.class, appContext));
Discouraged access: The method make(Class<WorkbenchLogger>, 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
79. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 280)
.set(Logger.class.getName(), ContextInjectionFactory.make(
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
80. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 282)
appContext.set(Adapter.class.getName(), ContextInjectionFactory.make(EclipseAdapter.class, appContext));
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
81. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 282)
appContext.set(Adapter.class.getName(),
Discouraged access: The type Adapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
82. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 283)
ContextInjectionFactory.make(EclipseAdapter.class, appContext));
Discouraged access: The method make(Class<EclipseAdapter>, 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
83. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 283)
ContextInjectionFactory.make(EclipseAdapter.class, appContext));
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
84. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 283)
ContextInjectionFactory.make(EclipseAdapter.class, appContext));
Discouraged access: The type EclipseAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
85. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 286)
appContext.set(ContextManager.class.getName(), new ContextManager());
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
86. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 289)
appContext.set(IServiceConstants.ACTIVE_CONTEXTS, new ActiveContextsFunction());
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
87. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 289)
appContext.set(IServiceConstants.ACTIVE_CONTEXTS,
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
88. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 289)
appContext.set(IServiceConstants.ACTIVE_CONTEXTS,
Discouraged access: The field ACTIVE_CONTEXTS from the type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
89. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 291)
appContext.set(IServiceConstants.ACTIVE_PART, new ActivePartLookupFunction());
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
90. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 291)
appContext.set(IServiceConstants.ACTIVE_PART,
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
91. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 291)
appContext.set(IServiceConstants.ACTIVE_PART,
Discouraged access: The field ACTIVE_PART from the type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
92. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 293)
appContext.runAndTrack(new RunAndTrack() { public boolean changed(IEclipseContext context) { Object o = appContext.get(IServiceConstants.ACTIVE_PART); if (o instanceof MPart) { appContext.set(IServiceConstants.ACTIVE_PART_ID, ((MPart) o).getElementId()); } return true; } /* * For debugging purposes only */ @Override public String toString() { return IServiceConstants.ACTIVE_PART_ID; } });
Discouraged access: The method runAndTrack(RunAndTrack) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
93. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 293)
appContext.runAndTrack(new RunAndTrack() {
Discouraged access: The type RunAndTrack is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
94. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 294)
public boolean changed(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
95. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 295)
Object o = appContext.get(IServiceConstants.ACTIVE_PART);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
96. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 295)
Object o = appContext.get(IServiceConstants.ACTIVE_PART);
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
97. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 295)
Object o = appContext.get(IServiceConstants.ACTIVE_PART);
Discouraged access: The field ACTIVE_PART from the type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
98. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 296)
if (o instanceof MPart) {
Discouraged access: The type MPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
99. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 297)
appContext.set(IServiceConstants.ACTIVE_PART_ID, ((MPart) o).getElementId());
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
100. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
 (at line 297)
appContext.set(IServiceConstants.ACTIVE_PART_ID,
Discouraged access: The field ACTIVE_PART_ID from the type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java : 9 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 6)
import org.eclipse.e4.ui.workbench.IWorkbench;
Discouraged access: The type IWorkbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 10)
import org.eclipse.ui.testing.TestableObject;
Discouraged access: The type TestableObject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench3/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 17)
public class E4Testable extends TestableObject {
Discouraged access: The type TestableObject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench3/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 21)
private IWorkbench workbench;
Discouraged access: The type IWorkbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 43)
public void init(Display display, IWorkbench workbench) {
Discouraged access: The type IWorkbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 48)
if (getTestHarness() != null) {
Discouraged access: The method getTestHarness() from the type TestableObject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench3/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 62)
getTestHarness().runTests();
Discouraged access: The method getTestHarness() from the type TestableObject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench3/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 62)
getTestHarness().runTests();
Discouraged access: The method runTests() from the type ITestHarness is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench3/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/E4Testable.java
 (at line 115)
Assert.isTrue(workbench.close());
Discouraged access: The method close() from the type IWorkbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java : 20 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 18)
import org.eclipse.e4.ui.model.application.commands.impl.CommandsPackageImpl;
Discouraged access: The type CommandsPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 19)
import org.eclipse.e4.ui.model.application.descriptor.basic.impl.BasicPackageImpl;
Discouraged access: The type BasicPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 20)
import org.eclipse.e4.ui.model.application.impl.ApplicationPackageImpl;
Discouraged access: The type ApplicationPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 21)
import org.eclipse.e4.ui.model.application.ui.advanced.impl.AdvancedPackageImpl;
Discouraged access: The type AdvancedPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 22)
import org.eclipse.e4.ui.model.application.ui.impl.UiPackageImpl;
Discouraged access: The type UiPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 23)
import org.eclipse.e4.ui.model.application.ui.menu.impl.MenuPackageImpl;
Discouraged access: The type MenuPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 35)
processLiterals(CommandsPackageImpl.Literals.class);
Discouraged access: The type CommandsPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 35)
processLiterals(CommandsPackageImpl.Literals.class);
Discouraged access: The type CommandsPackageImpl.Literals is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 36)
processLiterals(BasicPackageImpl.Literals.class);
Discouraged access: The type BasicPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
10. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 36)
processLiterals(BasicPackageImpl.Literals.class);
Discouraged access: The type BasicPackageImpl.Literals is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 37)
processLiterals(ApplicationPackageImpl.Literals.class);
Discouraged access: The type ApplicationPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
12. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 37)
processLiterals(ApplicationPackageImpl.Literals.class);
Discouraged access: The type ApplicationPackageImpl.Literals is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 38)
processLiterals(AdvancedPackageImpl.Literals.class);
Discouraged access: The type AdvancedPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 38)
processLiterals(AdvancedPackageImpl.Literals.class);
Discouraged access: The type AdvancedPackageImpl.Literals is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
15. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 39)
processLiterals(org.eclipse.e4.ui.model.application.ui.basic.impl.BasicPackageImpl.Literals.class);
Discouraged access: The type BasicPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 39)
processLiterals(org.eclipse.e4.ui.model.application.ui.basic.impl.BasicPackageImpl.Literals.class);
Discouraged access: The type BasicPackageImpl.Literals is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 40)
processLiterals(UiPackageImpl.Literals.class);
Discouraged access: The type UiPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 40)
processLiterals(UiPackageImpl.Literals.class);
Discouraged access: The type UiPackageImpl.Literals is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
19. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 41)
processLiterals(MenuPackageImpl.Literals.class);
Discouraged access: The type MenuPackageImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/GenTopic.java
 (at line 41)
processLiterals(MenuPackageImpl.Literals.class);
Discouraged access: The type MenuPackageImpl.Literals is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java : 100 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 25)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 26)
import org.eclipse.e4.core.contexts.IContextConstants;
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 28)
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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 29)
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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 30)
import org.eclipse.e4.core.services.contributions.IContributionFactory;
Discouraged access: The type IContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 31)
import org.eclipse.e4.core.services.events.IEventBroker;
Discouraged access: The type IEventBroker is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 32)
import org.eclipse.e4.core.services.log.Logger;
Discouraged access: The type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 33)
import org.eclipse.e4.core.services.statusreporter.StatusReporter;
Discouraged access: The type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
10. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 34)
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/I20100618-1645/plugins/org.eclipse.e4.ui.bindings/@dot
11. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 35)
import org.eclipse.e4.ui.css.core.util.impl.resources.OSGiResourceLocator;
Discouraged access: The type OSGiResourceLocator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.css.core/@dot
12. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 36)
import org.eclipse.e4.ui.css.swt.engine.CSSSWTEngineImpl;
Discouraged access: The type CSSSWTEngineImpl is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.css.swt/@dot
13. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 37)
import org.eclipse.e4.ui.css.swt.theme.IThemeEngine;
Discouraged access: The type IThemeEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.css.swt.theme/@dot
14. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 38)
import org.eclipse.e4.ui.css.swt.theme.IThemeManager;
Discouraged access: The type IThemeManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.css.swt.theme/@dot
15. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 44)
import org.eclipse.e4.ui.model.application.MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 45)
import org.eclipse.e4.ui.model.application.MApplicationElement;
Discouraged access: The type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 46)
import org.eclipse.e4.ui.model.application.MContribution;
Discouraged access: The type MContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 47)
import org.eclipse.e4.ui.model.application.ui.MContext;
Discouraged access: The type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
19. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 48)
import org.eclipse.e4.ui.model.application.ui.MElementContainer;
Discouraged access: The type MElementContainer<T> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 49)
import org.eclipse.e4.ui.model.application.ui.MGenericStack;
Discouraged access: The type MGenericStack<T> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
21. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 50)
import org.eclipse.e4.ui.model.application.ui.MUIElement;
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
22. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 51)
import org.eclipse.e4.ui.model.application.ui.advanced.MPlaceholder;
Discouraged access: The type MPlaceholder is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
23. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 52)
import org.eclipse.e4.ui.model.application.ui.basic.MTrimmedWindow;
Discouraged access: The type MTrimmedWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
24. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 53)
import org.eclipse.e4.ui.model.application.ui.basic.MWindow;
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
25. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 54)
import org.eclipse.e4.ui.services.IStylingEngine;
Discouraged access: The type IStylingEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
26. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 55)
import org.eclipse.e4.ui.workbench.IPresentationEngine;
Discouraged access: The type IPresentationEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
27. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 56)
import org.eclipse.e4.ui.workbench.IResourceUtilities;
Discouraged access: The type IResourceUtilities<ImageDesc> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
28. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 57)
import org.eclipse.e4.ui.workbench.IWorkbench;
Discouraged access: The type IWorkbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
29. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 58)
import org.eclipse.e4.ui.workbench.UIEvents;
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
30. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 59)
import org.eclipse.e4.ui.workbench.modeling.EModelService;
Discouraged access: The type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
31. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 74)
import org.eclipse.ui.testing.TestableObject;
Discouraged access: The type TestableObject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench3/@dot
32. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 81)
public class PartRenderingEngine implements IPresentationEngine {
Discouraged access: The type IPresentationEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
33. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 99)
MUIElement changedElement = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
34. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 99)
MUIElement changedElement = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
35. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 100)
.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
36. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 100)
.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
37. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 100)
.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The field ELEMENT from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
38. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 101)
MElementContainer<?> parent = changedElement.getParent();
Discouraged access: The type MElementContainer<?> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
39. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 101)
MElementContainer<?> parent = changedElement.getParent();
Discouraged access: The method getParent() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
40. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 104)
if (parent == null && changedElement instanceof MWindow) {
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
41. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 105)
parent = (MElementContainer<?>) ((EObjectImpl) changedElement)
Discouraged access: The type MElementContainer<?> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
42. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 110)
if (parent == null || parent.getWidget() == null)
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
43. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 113)
if (changedElement.isToBeRendered()) {
Discouraged access: The method isToBeRendered() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
44. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 131)
Object changedObj = event.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
45. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 131)
Object changedObj = event.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
46. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 131)
Object changedObj = event.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The field ELEMENT from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
47. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 132)
if (!(changedObj instanceof MTrimmedWindow))
Discouraged access: The type MTrimmedWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
48. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 135)
MTrimmedWindow window = (MTrimmedWindow) changedObj;
Discouraged access: The type MTrimmedWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
49. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 135)
MTrimmedWindow window = (MTrimmedWindow) changedObj;
Discouraged access: The type MTrimmedWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
50. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 136)
if (window.getWidget() == null)
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
51. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 140)
.getProperty(UIEvents.EventTags.TYPE);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
52. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 140)
.getProperty(UIEvents.EventTags.TYPE);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
53. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 140)
.getProperty(UIEvents.EventTags.TYPE);
Discouraged access: The field TYPE from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
54. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 141)
if (UIEvents.EventTypes.ADD.equals(eventType)) {
Discouraged access: The type UIEvents.EventTypes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
55. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 141)
if (UIEvents.EventTypes.ADD.equals(eventType)) {
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
56. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 141)
if (UIEvents.EventTypes.ADD.equals(eventType)) {
Discouraged access: The field ADD from the type UIEvents.EventTypes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
57. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 142)
MUIElement added = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
58. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 142)
MUIElement added = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
59. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 143)
.getProperty(UIEvents.EventTags.NEW_VALUE);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
60. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 143)
.getProperty(UIEvents.EventTags.NEW_VALUE);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
61. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 143)
.getProperty(UIEvents.EventTags.NEW_VALUE);
Discouraged access: The field NEW_VALUE from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
62. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 144)
if (added.isToBeRendered())
Discouraged access: The method isToBeRendered() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
63. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 145)
createGui(added, window.getWidget());
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
64. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 153)
Object changedObj = event.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
65. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 153)
Object changedObj = event.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
66. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 153)
Object changedObj = event.getProperty(UIEvents.EventTags.ELEMENT);
Discouraged access: The field ELEMENT from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
67. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 154)
if (!(changedObj instanceof MElementContainer<?>))
Discouraged access: The type MElementContainer<?> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
68. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 157)
MElementContainer<MUIElement> changedElement = (MElementContainer<MUIElement>) changedObj;
Discouraged access: The type MElementContainer<MUIElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
69. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 157)
MElementContainer<MUIElement> changedElement = (MElementContainer<MUIElement>) changedObj;
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
70. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 157)
MElementContainer<MUIElement> changedElement = (MElementContainer<MUIElement>) changedObj;
Discouraged access: The type MElementContainer<MUIElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
71. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 157)
MElementContainer<MUIElement> changedElement = (MElementContainer<MUIElement>) changedObj;
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
72. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 158)
boolean isApplication = changedObj instanceof MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
73. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 166)
.getProperty(UIEvents.EventTags.TYPE);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
74. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 166)
.getProperty(UIEvents.EventTags.TYPE);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
75. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 166)
.getProperty(UIEvents.EventTags.TYPE);
Discouraged access: The field TYPE from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
76. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 167)
if (UIEvents.EventTypes.ADD.equals(eventType)) {
Discouraged access: The type UIEvents.EventTypes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
77. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 167)
if (UIEvents.EventTypes.ADD.equals(eventType)) {
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
78. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 167)
if (UIEvents.EventTypes.ADD.equals(eventType)) {
Discouraged access: The field ADD from the type UIEvents.EventTypes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
79. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 169)
MUIElement added = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
80. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 169)
MUIElement added = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
81. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 170)
.getProperty(UIEvents.EventTags.NEW_VALUE);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
82. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 170)
.getProperty(UIEvents.EventTags.NEW_VALUE);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
83. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 170)
.getProperty(UIEvents.EventTags.NEW_VALUE);
Discouraged access: The field NEW_VALUE from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
84. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 176)
boolean isStack = changedObj instanceof MGenericStack<?>;
Discouraged access: The type MGenericStack<?> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
85. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 177)
boolean hasWidget = added.getWidget() != null;
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
86. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 178)
boolean isSelected = added == changedElement .getSelectedElement();
Discouraged access: The method getSelectedElement() from the type MElementContainer<MUIElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
87. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 192)
} else if (UIEvents.EventTypes.REMOVE.equals(eventType)) {
Discouraged access: The type UIEvents.EventTypes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
88. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 192)
} else if (UIEvents.EventTypes.REMOVE.equals(eventType)) {
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
89. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 192)
} else if (UIEvents.EventTypes.REMOVE.equals(eventType)) {
Discouraged access: The field REMOVE from the type UIEvents.EventTypes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
90. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 194)
MUIElement removed = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
91. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 194)
MUIElement removed = (MUIElement) event
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
92. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 195)
.getProperty(UIEvents.EventTags.OLD_VALUE);
Discouraged access: The type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
93. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 195)
.getProperty(UIEvents.EventTags.OLD_VALUE);
Discouraged access: The type UIEvents is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
94. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 195)
.getProperty(UIEvents.EventTags.OLD_VALUE);
Discouraged access: The field OLD_VALUE from the type UIEvents.EventTags is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
95. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 198)
if (!removed.isToBeRendered())
Discouraged access: The method isToBeRendered() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
96. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 201)
if (removed.getWidget() instanceof Control) {
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
97. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 202)
Control ctrl = (Control) removed.getWidget();
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
98. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 214)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
99. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
 (at line 218)
protected MApplication theApp;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java : 50 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 15)
import org.eclipse.e4.core.contexts.IContextConstants;
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 17)
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/I20100618-1645/plugins/org.eclipse.e4.ui.bindings/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 19)
import org.eclipse.e4.ui.model.application.MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 20)
import org.eclipse.e4.ui.model.application.ui.basic.MWindow;
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 21)
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 47)
private MApplication application;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 49)
ShellActivationListener(MApplication application) {
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 60)
if (obj instanceof MWindow) {
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
10. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 62)
Object local = ((MWindow) obj).getContext().getLocal(
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 62)
Object local = ((MWindow) obj).getContext().getLocal( IContextConstants.ACTIVE_CHILD);
Discouraged access: The method getLocal(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
12. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 62)
Object local = ((MWindow) obj).getContext().getLocal(
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 63)
IContextConstants.ACTIVE_CHILD);
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
14. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 63)
IContextConstants.ACTIVE_CHILD);
Discouraged access: The field ACTIVE_CHILD from the type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
15. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 87)
final IEclipseContext parentContext = getParentContext(shell);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
16. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 88)
final IEclipseContext shellContext = getShellContext(shell,
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
17. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 93)
parentContext.set(IContextConstants.ACTIVE_CHILD, shellContext);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
18. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 93)
parentContext.set(IContextConstants.ACTIVE_CHILD, shellContext);
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
19. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 93)
parentContext.set(IContextConstants.ACTIVE_CHILD, shellContext);
Discouraged access: The field ACTIVE_CHILD from the type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
20. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 109)
final IEclipseContext prevChild = (IEclipseContext) parent
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
21. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 109)
final IEclipseContext prevChild = (IEclipseContext) parent
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
22. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 114)
final IEclipseContext parentContext = getParentContext(shell);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
23. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 117)
parentContext.set(IContextConstants.ACTIVE_CHILD, prevChild);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
24. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 117)
parentContext.set(IContextConstants.ACTIVE_CHILD, prevChild);
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
25. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 117)
parentContext.set(IContextConstants.ACTIVE_CHILD, prevChild);
Discouraged access: The field ACTIVE_CHILD from the type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
26. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 128)
private IEclipseContext getShellContext(final Shell shell,
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
27. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 129)
IEclipseContext parentContext) {
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
28. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 130)
IEclipseContext shellContext = (IEclipseContext) shell
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
29. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 130)
IEclipseContext shellContext = (IEclipseContext) shell
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
30. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 135)
final IEclipseContext context = parentContext
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
31. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 135)
final IEclipseContext context = parentContext .createChild(EBindingService.DIALOG_CONTEXT_ID);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
32. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 136)
.createChild(EBindingService.DIALOG_CONTEXT_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/I20100618-1645/plugins/org.eclipse.e4.ui.bindings/@dot
33. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 136)
.createChild(EBindingService.DIALOG_CONTEXT_ID);
Discouraged access: The field DIALOG_CONTEXT_ID from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.bindings/@dot
34. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 138)
context.set(E4Workbench.LOCAL_ACTIVE_SHELL, shell);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
35. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 143)
EContextService contextService = context.get(EContextService.class);
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
36. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 143)
EContextService contextService = context.get(EContextService.class);
Discouraged access: The method get(Class<EContextService>) from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
37. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 143)
EContextService contextService = context.get(EContextService.class);
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
38. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 144)
contextService.activateContext(EBindingService.DIALOG_CONTEXT_ID);
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
39. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 144)
contextService.activateContext(EBindingService.DIALOG_CONTEXT_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/I20100618-1645/plugins/org.eclipse.e4.ui.bindings/@dot
40. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 144)
contextService.activateContext(EBindingService.DIALOG_CONTEXT_ID);
Discouraged access: The field DIALOG_CONTEXT_ID from the type EBindingService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.bindings/@dot
41. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 149)
context.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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
42. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 156)
private IEclipseContext getParentContext(Shell shell) {
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
43. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 157)
IEclipseContext shellContext = (IEclipseContext) shell
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
44. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 157)
IEclipseContext shellContext = (IEclipseContext) shell
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
45. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 160)
return shellContext.getParent();
Discouraged access: The method getParent() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
46. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 167)
if (obj instanceof MWindow) {
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
47. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 168)
return ((MWindow) obj).getContext();
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
48. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 168)
return ((MWindow) obj).getContext();
Discouraged access: The type MWindow is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
49. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 172)
return (IEclipseContext) obj;
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
50. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/ShellActivationListener.java
 (at line 176)
return application.getContext();
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java : 7 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java
 (at line 13)
import org.eclipse.e4.core.contexts.ContextFunction;
Discouraged access: The type ContextFunction is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java
 (at line 14)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java
 (at line 15)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java
 (at line 20)
public class StatusReporterCreationFunction extends ContextFunction {
Discouraged access: The type ContextFunction is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java
 (at line 22)
public Object compute(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java
 (at line 23)
return ContextInjectionFactory.make(WorkbenchStatusReporter.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/StatusReporterCreationFunction.java
 (at line 23)
return ContextInjectionFactory.make(WorkbenchStatusReporter.class, context);
Discouraged access: The method make(Class<WorkbenchStatusReporter>, 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java : 26 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 17)
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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 18)
import org.eclipse.e4.core.services.log.Logger;
Discouraged access: The type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 19)
import org.eclipse.e4.core.services.statusreporter.StatusReporter;
Discouraged access: The type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 29)
public class WorkbenchStatusReporter extends StatusReporter {
Discouraged access: The type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 34)
Logger logger;
Discouraged access: The type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 36)
@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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 41)
int action = style & (IGNORE | LOG | SHOW | BLOCK);
Discouraged access: The field IGNORE from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 41)
int action = style & (IGNORE | LOG | SHOW | BLOCK);
Discouraged access: The field LOG from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 41)
int action = style & (IGNORE | LOG | SHOW | BLOCK);
Discouraged access: The field SHOW from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
10. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 41)
int action = style & (IGNORE | LOG | SHOW | BLOCK);
Discouraged access: The field BLOCK from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
11. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 43)
if (status.matches(ERROR)) {
Discouraged access: The field ERROR from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
12. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 44)
action = SHOW;
Discouraged access: The field SHOW from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
13. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 46)
action = LOG;
Discouraged access: The field LOG from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
14. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 49)
if (style != IGNORE) {
Discouraged access: The field IGNORE from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
15. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 52)
if ((action & (SHOW | BLOCK)) != 0) {
Discouraged access: The field SHOW from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
16. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 52)
if ((action & (SHOW | BLOCK)) != 0) {
Discouraged access: The field BLOCK from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
17. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 53)
boolean shouldBlock = (action & BLOCK) != 0;
Discouraged access: The field BLOCK from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
18. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 60)
if (status.matches(ERROR)) {
Discouraged access: The field ERROR from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
19. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 61)
logger.error(status.getException(), status.getMessage());
Discouraged access: The method error(Throwable, String) from the type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
20. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 62)
} else if (status.matches(WARNING)) {
Discouraged access: The field WARNING from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
21. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 63)
logger.warn(status.getException(), status.getMessage());
Discouraged access: The method warn(Throwable, String) from the type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
22. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 64)
} else if (status.matches(INFO)) {
Discouraged access: The field INFO from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
23. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 65)
logger.info(status.getException(), status.getMessage());
Discouraged access: The method info(Throwable, String) from the type Logger is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
24. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 86)
status.getException() != null ? exceptionStatus : status, ERROR
Discouraged access: The field ERROR from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
25. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 87)
| WARNING | INFO) {
Discouraged access: The field WARNING from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot
26. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
 (at line 87)
| WARNING | INFO) {
Discouraged access: The field INFO from the type StatusReporter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.services/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java : 23 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 14)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 15)
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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 16)
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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 17)
import org.eclipse.e4.ui.model.application.MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 18)
import org.eclipse.e4.ui.model.application.descriptor.basic.MPartDescriptor;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 19)
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
7. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 21)
import org.eclipse.e4.ui.workbench.modeling.EPartService;
Discouraged access: The type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 22)
import org.eclipse.e4.ui.workbench.modeling.EPartService.PartState;
Discouraged access: The type EPartService.PartState is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 30)
@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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
10. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 31)
public void execute(@Named(IServiceConstants.ACTIVE_SHELL) Shell shell,
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
11. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 31)
public void execute(@Named(IServiceConstants.ACTIVE_SHELL) Shell shell,
Discouraged access: The field ACTIVE_SHELL from the type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
12. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 32)
MApplication application, EPartService partService,
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 32)
MApplication application, EPartService partService,
Discouraged access: The type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 33)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
15. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 34)
@Optional @Named(VIEWS_SHOW_VIEW_PARM_ID) String viewId) {
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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
16. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 36)
partService.showPart(viewId, PartState.ACTIVATE);
Discouraged access: The method showPart(String, EPartService.PartState) from the type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 36)
partService.showPart(viewId, PartState.ACTIVATE);
Discouraged access: The type EPartService.PartState is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 36)
partService.showPart(viewId, PartState.ACTIVATE);
Discouraged access: The field ACTIVATE from the type EPartService.PartState is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
19. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 46)
for (MPartDescriptor descriptor : dialog.getSelection()) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 47)
partService.showPart(descriptor.getElementId(), PartState.ACTIVATE);
Discouraged access: The method showPart(String, EPartService.PartState) from the type EPartService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
21. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 47)
partService.showPart(descriptor.getElementId(), PartState.ACTIVATE);
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
22. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 47)
partService.showPart(descriptor.getElementId(), PartState.ACTIVATE);
Discouraged access: The type EPartService.PartState is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
23. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ShowViewHandler.java
 (at line 47)
partService.showPart(descriptor.getElementId(), PartState.ACTIVATE);
Discouraged access: The field ACTIVATE from the type EPartService.PartState is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ThemeUtil.java : 3 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ThemeUtil.java
 (at line 15)
import org.eclipse.e4.ui.services.IStylingEngine;
Discouraged access: The type IStylingEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ThemeUtil.java
 (at line 22)
public static void applyDialogStyles(IStylingEngine engine, Control control) {
Discouraged access: The type IStylingEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/handlers/ThemeUtil.java
 (at line 29)
engine.style(shell);
Discouraged access: The method style(Object) from the type IStylingEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot

/src/org/eclipse/e4/ui/internal/workbench/swt/parts/SampleView.java : 6 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/parts/SampleView.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/parts/SampleView.java
 (at line 18)
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
3. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/parts/SampleView.java
 (at line 40)
public SampleView(Composite parent, final IEclipseContext outputContext,
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
4. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/parts/SampleView.java
 (at line 47)
outputContext.set(IServiceConstants.SELECTION, event.getSelection());
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
5. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/parts/SampleView.java
 (at line 47)
outputContext.set(IServiceConstants.SELECTION, event.getSelection());
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/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot
6. WARNING in /src/org/eclipse/e4/ui/internal/workbench/swt/parts/SampleView.java
 (at line 47)
outputContext.set(IServiceConstants.SELECTION, event.getSelection());
Discouraged access: The field SELECTION from the type IServiceConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.services/@dot

/src/org/eclipse/e4/ui/workbench/swt/WorkbenchSWTActivator.java : 4 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/WorkbenchSWTActivator.java
 (at line 9)
import org.eclipse.core.internal.runtime.InternalPlatform;
Discouraged access: The type InternalPlatform is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.core.runtime_3.6.0.v20100505.jar
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/WorkbenchSWTActivator.java
 (at line 294)
return InternalPlatform.getDefault().getStateLocation(
Discouraged access: The type InternalPlatform is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.core.runtime_3.6.0.v20100505.jar
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/WorkbenchSWTActivator.java
 (at line 294)
return InternalPlatform.getDefault().getStateLocation(
Discouraged access: The method getDefault() from the type InternalPlatform is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.core.runtime_3.6.0.v20100505.jar
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/WorkbenchSWTActivator.java
 (at line 294)
return InternalPlatform.getDefault().getStateLocation( context.getBundle(), true);
Discouraged access: The method getStateLocation(Bundle, boolean) from the type InternalPlatform is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.core.runtime_3.6.0.v20100505.jar

/src/org/eclipse/e4/ui/workbench/swt/factories/IRendererFactory.java : 2 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/factories/IRendererFactory.java
 (at line 4)
import org.eclipse.e4.ui.model.application.ui.MUIElement;
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/factories/IRendererFactory.java
 (at line 7)
public AbstractPartRenderer getRenderer(MUIElement uiElement, Object parent);
Discouraged access: The type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java : 30 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 18)
import org.eclipse.e4.ui.model.application.MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 19)
import org.eclipse.e4.ui.model.application.descriptor.basic.MPartDescriptor;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 71)
private MApplication application;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 72)
private MPartDescriptor[] viewDescs = new MPartDescriptor[0];
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 72)
private MPartDescriptor[] viewDescs = new MPartDescriptor[0];
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 76)
private 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
8. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 86)
public ShowViewDialog(Shell shell, MApplication application,
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 87)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
10. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 107)
viewDescs = new MPartDescriptor[0];
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 274)
public MPartDescriptor[] getSelection() {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
12. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 308)
List<MPartDescriptor> descriptors = application.getDescriptors();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 308)
List<MPartDescriptor> descriptors = application.getDescriptors();
Discouraged access: The method getDescriptors() from the type MPartDescriptorContainer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 309)
for (MPartDescriptor descriptor : descriptors) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
15. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 310)
if (selectedPartId.equals(descriptor.getElementId())) {
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 331)
if (expandedElements[i] instanceof MPartDescriptor)
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 332)
expandedCategoryIds[i] = ((MPartDescriptor) expandedElements[i]) .getElementId();
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 332)
expandedCategoryIds[i] = ((MPartDescriptor) expandedElements[i])
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
19. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 345)
selectedViewId = viewDescs[0].getElementId();
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 359)
String tooltip = (viewDescs.length > 0) ? viewDescs[0].getTooltip()
Discouraged access: The method getTooltip() from the type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
21. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 382)
if (o instanceof MPartDescriptor) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
22. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 387)
viewDescs = new MPartDescriptor[descs.size()];
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
23. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 411)
if (o instanceof MPartDescriptor) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
24. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 412)
String description = ((MPartDescriptor) o).getTooltip();
Discouraged access: The method getTooltip() from the type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
25. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java
 (at line 412)
String description = ((MPartDescriptor) o).getTooltip();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java : 8 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 13)
import org.eclipse.e4.ui.model.application.descriptor.basic.MPartDescriptor;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 46)
if (e1 instanceof MPartDescriptor)
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 47)
str1 = ((MPartDescriptor) e1).getLabel();
Discouraged access: The method getLabel() from the type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 47)
str1 = ((MPartDescriptor) e1).getLabel();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 52)
if (e2 instanceof MPartDescriptor)
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 53)
str2 = ((MPartDescriptor) e2).getLabel();
Discouraged access: The method getLabel() from the type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java
 (at line 53)
str2 = ((MPartDescriptor) e2).getLabel();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java : 20 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 18)
import org.eclipse.e4.ui.model.application.MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 19)
import org.eclipse.e4.ui.model.application.descriptor.basic.MPartDescriptor;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 37)
private MApplication application;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 39)
public ViewContentProvider(MApplication application) {
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 53)
application = (MApplication) newInput;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 61)
if (element instanceof MApplication) {
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 79)
if (element instanceof MApplication) {
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 80)
List<MPartDescriptor> descriptors = ((MApplication) element)
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 80)
List<MPartDescriptor> descriptors = ((MApplication) element) .getDescriptors();
Discouraged access: The method getDescriptors() from the type MPartDescriptorContainer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
10. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 80)
List<MPartDescriptor> descriptors = ((MApplication) element)
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 83)
Set<MPartDescriptor> noCategoryDescriptors = new HashSet<MPartDescriptor>();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
12. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 83)
Set<MPartDescriptor> noCategoryDescriptors = new HashSet<MPartDescriptor>();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 84)
for (MPartDescriptor descriptor : descriptors) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 85)
List<String> tags = descriptor.getTags();
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
15. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 108)
List<MPartDescriptor> descriptors = application.getDescriptors();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 108)
List<MPartDescriptor> descriptors = application.getDescriptors();
Discouraged access: The method getDescriptors() from the type MPartDescriptorContainer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 109)
Set<MPartDescriptor> categoryDescriptors = new HashSet<MPartDescriptor>();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 109)
Set<MPartDescriptor> categoryDescriptors = new HashSet<MPartDescriptor>();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
19. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 110)
for (MPartDescriptor descriptor : descriptors) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewContentProvider.java
 (at line 111)
List<String> tags = descriptor.getTags();
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java : 14 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 20)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 21)
import org.eclipse.e4.ui.model.application.descriptor.basic.MPartDescriptor;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 22)
import org.eclipse.e4.ui.workbench.IResourceUtilities;
Discouraged access: The type IResourceUtilities<ImageDesc> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 57)
private 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 66)
public ViewLabelProvider(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 88)
if (element instanceof MPartDescriptor) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 89)
String iconURI = ((MPartDescriptor) element).getIconURI();
Discouraged access: The method getIconURI() from the type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 89)
String iconURI = ((MPartDescriptor) element).getIconURI();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 93)
ISWTResourceUtilities resUtils = (ISWTResourceUtilities) context .get(IResourceUtilities.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
10. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 94)
.get(IResourceUtilities.class.getName());
Discouraged access: The type IResourceUtilities<ImageDesc> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 95)
image = resUtils.imageDescriptorFromURI( URI.createURI(iconURI)).createImage();
Discouraged access: The method imageDescriptorFromURI(URI) from the type IResourceUtilities<ImageDescriptor> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
12. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 123)
} else if (element instanceof MPartDescriptor) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 124)
label = ((MPartDescriptor) element).getLabel();
Discouraged access: The method getLabel() from the type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java
 (at line 124)
label = ((MPartDescriptor) element).getLabel();
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewPatternFilter.java : 6 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewPatternFilter.java
 (at line 13)
import org.eclipse.e4.ui.model.application.descriptor.basic.MPartDescriptor;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewPatternFilter.java
 (at line 38)
return element instanceof MPartDescriptor;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewPatternFilter.java
 (at line 54)
if (element instanceof MPartDescriptor) {
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewPatternFilter.java
 (at line 55)
MPartDescriptor desc = (MPartDescriptor) element;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewPatternFilter.java
 (at line 55)
MPartDescriptor desc = (MPartDescriptor) element;
Discouraged access: The type MPartDescriptor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewPatternFilter.java
 (at line 56)
text = desc.getLabel();
Discouraged access: The method getLabel() from the type MUILabel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/modeling/EMenuService.java : 2 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/EMenuService.java
 (at line 3)
import org.eclipse.e4.ui.model.application.ui.menu.MPopupMenu;
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/EMenuService.java
 (at line 18)
MPopupMenu registerContextMenu(Object parent, String menuId);
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java : 24 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 6)
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
Discouraged access: The type MPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 7)
import org.eclipse.e4.ui.model.application.ui.menu.MMenu;
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 8)
import org.eclipse.e4.ui.model.application.ui.menu.MPopupMenu;
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 17)
private MPart myPart;
Discouraged access: The type MPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 19)
public MPopupMenu registerContextMenu(Object parent, String menuId) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 24)
for (MMenu mmenu : myPart.getMenus()) {
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 24)
for (MMenu mmenu : myPart.getMenus()) {
Discouraged access: The method getMenus() from the type MPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 25)
if (menuId.equals(mmenu.getElementId())
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
10. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 26)
&& mmenu instanceof MPopupMenu) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 27)
if (registerMenu(parentControl, (MPopupMenu) mmenu)) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
12. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 28)
return (MPopupMenu) mmenu;
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 38)
final MPopupMenu mmenu) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 39)
if (mmenu.getWidget() != null) {
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
15. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 44)
mmenu.setWidget(menu);
Discouraged access: The method setWidget(Object) from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 46)
IEclipseContext popupContext = myPart.getContext().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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
17. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 46)
IEclipseContext popupContext = myPart.getContext().createChild(
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 46)
IEclipseContext popupContext = myPart.getContext().createChild( "popup:" + mmenu.getElementId());
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
19. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 47)
"popup:" + mmenu.getElementId());
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 48)
mmenu.setContext(popupContext);
Discouraged access: The method setContext(IEclipseContext) from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
21. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 51)
mmenu.getContext().dispose();
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
22. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 51)
mmenu.getContext().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/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
23. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 52)
mmenu.setContext(null);
Discouraged access: The method setContext(IEclipseContext) from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
24. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java
 (at line 53)
mmenu.setWidget(null);
Discouraged access: The method setWidget(Object) from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java : 9 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 3)
import org.eclipse.e4.core.contexts.ContextFunction;
Discouraged access: The type ContextFunction is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 4)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 6)
import org.eclipse.e4.core.di.InjectionException;
Discouraged access: The type InjectionException is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 8)
public class MenuServiceCreationFunction extends ContextFunction {
Discouraged access: The type ContextFunction is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 11)
public Object compute(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 13)
return ContextInjectionFactory.make(MenuService.class, context);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
8. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 13)
return ContextInjectionFactory.make(MenuService.class, context);
Discouraged access: The method make(Class<MenuService>, 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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
9. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceCreationFunction.java
 (at line 14)
} catch (InjectionException ie) {
Discouraged access: The type InjectionException is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.di/@dot

/src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java : 100 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 21)
import org.eclipse.core.internal.expressions.ReferenceExpression;
Discouraged access: The type ReferenceExpression is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.core.expressions_3.4.200.v20100505.jar
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 23)
import org.eclipse.e4.core.contexts.IContextConstants;
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 24)
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 28)
import org.eclipse.e4.ui.model.application.MApplication;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 29)
import org.eclipse.e4.ui.model.application.ui.MCoreExpression;
Discouraged access: The type MCoreExpression is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
6. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 30)
import org.eclipse.e4.ui.model.application.ui.menu.MMenu;
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
7. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 31)
import org.eclipse.e4.ui.model.application.ui.menu.MMenuContribution;
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
8. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 32)
import org.eclipse.e4.ui.model.application.ui.menu.MMenuElement;
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
9. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 33)
import org.eclipse.e4.ui.model.application.ui.menu.MPopupMenu;
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
10. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 34)
import org.eclipse.e4.ui.model.application.ui.menu.MRenderedMenu;
Discouraged access: The type MRenderedMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
11. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 35)
import org.eclipse.e4.ui.workbench.IPresentationEngine;
Discouraged access: The type IPresentationEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
12. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 36)
import org.eclipse.e4.ui.workbench.modeling.EModelService;
Discouraged access: The type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
13. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 37)
import org.eclipse.e4.ui.workbench.modeling.ExpressionContext;
Discouraged access: The type ExpressionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
14. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 51)
private static void trace(String msg, Widget menu, MMenu menuModel) {
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
15. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 76)
private MApplication application;
Discouraged access: The type MApplication is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
16. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 79)
private IPresentationEngine renderer;
Discouraged access: The type IPresentationEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
17. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 82)
EModelService modelService;
Discouraged access: The type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
18. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 95)
if (obj instanceof MRenderedMenu) {
Discouraged access: The type MRenderedMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
19. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 96)
handlerRenderedMenu(event, menu, (MRenderedMenu) obj);
Discouraged access: The type MRenderedMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
20. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 97)
} else if (obj instanceof MPopupMenu) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
21. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 98)
handleContextMenu(event, menu, (MPopupMenu) obj);
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
22. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 99)
} else if (obj instanceof MMenu) {
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
23. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 100)
handleMenu(event, menu, (MMenu) obj);
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
24. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 105)
final MMenu menuModel) {
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
25. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 128)
final MMenu menuModel) {
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
26. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 129)
final IEclipseContext parentContext = modelService
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
27. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 129)
final IEclipseContext parentContext = modelService .getContainingContext(menuModel);
Discouraged access: The method getContainingContext(MUIElement) from the type EModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
28. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 132)
final ArrayList<MMenuContribution> toContribute = new ArrayList<MMenuContribution>();
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
29. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 132)
final ArrayList<MMenuContribution> toContribute = new ArrayList<MMenuContribution>();
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
30. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 133)
final ArrayList<MMenuElement> menuContributionsToRemove = new ArrayList<MMenuElement>();
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
31. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 133)
final ArrayList<MMenuElement> menuContributionsToRemove = new ArrayList<MMenuElement>();
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
32. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 134)
ExpressionContext eContext = new ExpressionContext(parentContext);
Discouraged access: The type ExpressionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
33. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 134)
ExpressionContext eContext = new ExpressionContext(parentContext);
Discouraged access: The constructor ExpressionContext(IEclipseContext) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
34. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 134)
ExpressionContext eContext = new ExpressionContext(parentContext);
Discouraged access: The type ExpressionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
35. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 135)
gatherMenuContributions(menuModel, menuModel.getElementId(),
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
36. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 153)
final MPopupMenu menuModel) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
37. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 171)
public void hidePopup(Event event, Menu menu, MPopupMenu menuModel) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
38. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 172)
final IEclipseContext popupContext = menuModel.getContext();
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
39. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 172)
final IEclipseContext popupContext = menuModel.getContext();
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
40. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 173)
final IEclipseContext parentContext = popupContext.getParent();
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
41. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 173)
final IEclipseContext parentContext = popupContext.getParent();
Discouraged access: The method getParent() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
42. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 174)
final IEclipseContext originalChild = (IEclipseContext) popupContext
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
43. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 174)
final IEclipseContext originalChild = (IEclipseContext) popupContext
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
44. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 174)
final IEclipseContext originalChild = (IEclipseContext) popupContext .get(TMP_ORIGINAL_CONTEXT);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
45. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 176)
popupContext.remove(TMP_ORIGINAL_CONTEXT);
Discouraged access: The method remove(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
46. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 180)
parentContext.set(IContextConstants.ACTIVE_CHILD, originalChild);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
47. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 180)
parentContext.set(IContextConstants.ACTIVE_CHILD,
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
48. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 180)
parentContext.set(IContextConstants.ACTIVE_CHILD,
Discouraged access: The field ACTIVE_CHILD from the type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
49. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 188)
final MPopupMenu menuModel) {
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
50. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 189)
final IEclipseContext popupContext = menuModel.getContext();
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
51. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 189)
final IEclipseContext popupContext = menuModel.getContext();
Discouraged access: The method getContext() from the type MContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
52. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 190)
final IEclipseContext parentContext = popupContext.getParent();
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
53. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 190)
final IEclipseContext parentContext = popupContext.getParent();
Discouraged access: The method getParent() from the type IEclipseContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
54. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 191)
final IEclipseContext originalChild = (IEclipseContext) parentContext
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
55. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 191)
final IEclipseContext originalChild = (IEclipseContext) parentContext
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
56. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 191)
final IEclipseContext originalChild = (IEclipseContext) parentContext .getLocal(IContextConstants.ACTIVE_CHILD);
Discouraged access: The method getLocal(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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
57. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 192)
.getLocal(IContextConstants.ACTIVE_CHILD);
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
58. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 192)
.getLocal(IContextConstants.ACTIVE_CHILD);
Discouraged access: The field ACTIVE_CHILD from the type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
59. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 193)
parentContext.set(IContextConstants.ACTIVE_CHILD, popupContext);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
60. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 193)
parentContext.set(IContextConstants.ACTIVE_CHILD, popupContext);
Discouraged access: The type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
61. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 193)
parentContext.set(IContextConstants.ACTIVE_CHILD, popupContext);
Discouraged access: The field ACTIVE_CHILD from the type IContextConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
62. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 194)
popupContext.set(TMP_ORIGINAL_CONTEXT, originalChild);
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/I20100618-1645/plugins/org.eclipse.e4.core.contexts/@dot
63. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 196)
final ArrayList<MMenuContribution> toContribute = new ArrayList<MMenuContribution>();
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
64. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 196)
final ArrayList<MMenuContribution> toContribute = new ArrayList<MMenuContribution>();
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
65. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 197)
final ArrayList<MMenuElement> menuContributionsToRemove = new ArrayList<MMenuElement>();
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
66. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 197)
final ArrayList<MMenuElement> menuContributionsToRemove = new ArrayList<MMenuElement>();
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
67. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 198)
ExpressionContext eContext = new ExpressionContext(popupContext);
Discouraged access: The type ExpressionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
68. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 198)
ExpressionContext eContext = new ExpressionContext(popupContext);
Discouraged access: The constructor ExpressionContext(IEclipseContext) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
69. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 198)
ExpressionContext eContext = new ExpressionContext(popupContext);
Discouraged access: The type ExpressionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
70. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 199)
gatherMenuContributions(menuModel, menuModel.getElementId(),
Discouraged access: The method getElementId() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
71. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 202)
for (String tag : menuModel.getTags()) {
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
72. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 223)
private void render(final Menu menu, final MMenu menuModel) {
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
73. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 225)
for (MMenuElement element : menuModel.getChildren()) {
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
74. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 225)
for (MMenuElement element : menuModel.getChildren()) {
Discouraged access: The method getChildren() from the type MElementContainer<MMenuElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
75. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 226)
renderer.createGui(element, menu);
Discouraged access: The method createGui(MUIElement, Object) from the type IPresentationEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
76. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 230)
private void unrender(final List<MMenuElement> menuModel) {
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
77. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 232)
for (MMenuElement element : menuModel) {
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
78. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 233)
renderer.removeGui(element);
Discouraged access: The method removeGui(MUIElement) from the type IPresentationEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
79. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 237)
private void gatherMenuContributions(final MMenu menuModel,
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
80. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 238)
final String id, final ArrayList<MMenuContribution> toContribute,
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
81. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 239)
final ExpressionContext eContext, boolean includePopups) {
Discouraged access: The type ExpressionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
82. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 240)
for (MMenuContribution menuContribution : application
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
83. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 240)
for (MMenuContribution menuContribution : application .getMenuContributions()) {
Discouraged access: The method getMenuContributions() from the type MMenuContributions is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
84. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 242)
String parentID = menuContribution.getParentID();
Discouraged access: The method getParentID() from the type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
85. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 244)
&& (menuModel instanceof MPopupMenu) && includePopups;
Discouraged access: The type MPopupMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
86. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 247)
|| !menuContribution.isToBeRendered()) {
Discouraged access: The method isToBeRendered() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
87. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 256)
private boolean isFiltered(MMenu menuModel,
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
88. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 257)
MMenuContribution menuContribution) {
Discouraged access: The type MMenuContribution is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
89. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 258)
if (menuModel.getTags().contains(MC_POPUP)) {
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
90. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 259)
return !menuContribution.getTags().contains(MC_POPUP)
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
91. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 260)
&& menuContribution.getTags().contains(MC_MENU);
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
92. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 262)
if (menuModel.getTags().contains(MC_MENU)) {
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
93. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 263)
return !menuContribution.getTags().contains(MC_MENU)
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
94. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 264)
&& menuContribution.getTags().contains(MC_POPUP);
Discouraged access: The method getTags() from the type MApplicationElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
95. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 269)
private void removeMenuContributions(final MMenu menuModel,
Discouraged access: The type MMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
96. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 270)
final ArrayList<MMenuElement> menuContributionsToRemove) {
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
97. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 271)
for (MMenuElement item : menuContributionsToRemove) {
Discouraged access: The type MMenuElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
98. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 273)
(Widget) menuModel.getWidget(), menuModel);
Discouraged access: The method getWidget() from the type MUIElement is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
99. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 274)
menuModel.getChildren().remove(item);
Discouraged access: The method getChildren() from the type MElementContainer<MMenuElement> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot
100. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/MenuServiceFilter.java
 (at line 279)
final MRenderedMenu menuModel) {
Discouraged access: The type MRenderedMenu is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.model.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledContentProvider.java : 5 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledContentProvider.java
 (at line 13)
import org.eclipse.e4.ui.workbench.modeling.ModelService;
Discouraged access: The type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledContentProvider.java
 (at line 23)
private ModelService modelSvc;
Discouraged access: The type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledContentProvider.java
 (at line 25)
public ModeledContentProvider(ModelService modelSvc) {
Discouraged access: The type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledContentProvider.java
 (at line 30)
return modelSvc.getChildren(parentElement, "Children"); //$NON-NLS-1$
Discouraged access: The method getChildren(Object, String) from the type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
5. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledContentProvider.java
 (at line 34)
return modelSvc.getProperty(element, "Parent"); //$NON-NLS-1$
Discouraged access: The method getProperty(Object, String) from the type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledLabelProvider.java : 4 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledLabelProvider.java
 (at line 13)
import org.eclipse.e4.ui.workbench.modeling.ModelService;
Discouraged access: The type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledLabelProvider.java
 (at line 21)
private ModelService modelSvc;
Discouraged access: The type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledLabelProvider.java
 (at line 23)
public ModeledLabelProvider(ModelService modelSvc) {
Discouraged access: The type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/ui/workbench/swt/modeling/ModeledLabelProvider.java
 (at line 34)
String label = (String) modelSvc.getProperty(element, "Label"); //$NON-NLS-1$
Discouraged access: The method getProperty(Object, String) from the type ModelService is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/ui/workbench/swt/util/ISWTResourceUtilities.java : 2 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/ui/workbench/swt/util/ISWTResourceUtilities.java
 (at line 14)
import org.eclipse.e4.ui.workbench.IResourceUtilities;
Discouraged access: The type IResourceUtilities<ImageDesc> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/ui/workbench/swt/util/ISWTResourceUtilities.java
 (at line 18)
IResourceUtilities<ImageDescriptor> {
Discouraged access: The type IResourceUtilities<ImageDescriptor> is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100618-1645/plugins/org.eclipse.e4.ui.workbench/@dot