Compiler log for org.eclipse.e4.xwt.tools.ui.editor_0.9.0.v20091022-1300 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 361

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/xwt/ui/editor/XWTCodeSynchronizer.java : 43 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 87)
String nodeName = node.getNodeName();
The local variable nodeName is never read
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 138)
IField[] fields = type.getFields();
The local variable fields is never read
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 230)
String name = xmlnode.getNodeName();
The local variable name is never read
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 285)
String name = xmlnode.getNodeName();
The local variable name is never read
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 390)
private void jumpToJavaMethod(IMethod[] methods, String methodName) {
The method jumpToJavaMethod(IMethod[], String) from the type XWTCodeSynchronizer is never used locally
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 408)
private void modifyAllRelativeHandlerName(StructuredTextViewer textViewer, int offset, String inputHandler, String oldAttrValue) {
The method modifyAllRelativeHandlerName(StructuredTextViewer, int, String, String) from the type XWTCodeSynchronizer is never used locally
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 418)
String name = node.getNodeName();
The local variable name is never read

/src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java : 100 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 26)
import org.eclipse.e4.xwt.internal.utils.UserData;
The import org.eclipse.e4.xwt.internal.utils.UserData is never used
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 27)
import org.eclipse.e4.xwt.javabean.metadata.Metaclass;
The import org.eclipse.e4.xwt.javabean.metadata.Metaclass is never used
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 316)
CMElementDeclaration elementDecl = getCMElementDeclaration(node);
The local variable elementDecl is never read
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 463)
IEvent[] allEvents = metaclass.getEvents();
The local variable allEvents is never read

/src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java : 48 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 17)
import org.eclipse.e4.xwt.ui.ExceptionHandle;
The import org.eclipse.e4.xwt.ui.ExceptionHandle is never used
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 302)
int eventMask = ElementChangedEvent.POST_CHANGE | ElementChangedEvent.POST_RECONCILE;
The local variable eventMask is never read
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 367)
private IProgressMonitor getProgressMonitor() {
The method getProgressMonitor() from the type XWTEditor is never used locally

/src/org/eclipse/e4/xwt/ui/editor/XWTEditorPlugin.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditorPlugin.java
 (at line 36)
private ContextTypeRegistry fContextTypeRegistry;
The field XWTEditorPlugin.fContextTypeRegistry is never read locally
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditorPlugin.java
 (at line 41)
private TemplateStore fTemplateStore;
The field XWTEditorPlugin.fTemplateStore is never read locally

/src/org/eclipse/e4/xwt/ui/editor/checkers/ElementPropertiesChecker.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/ElementPropertiesChecker.java
 (at line 61)
properties = Collections.EMPTY_LIST;
Type safety: The expression of type List needs unchecked conversion to conform to List<String>
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/ElementPropertiesChecker.java
 (at line 80)
attachedProperties = Collections.EMPTY_LIST;
Type safety: The expression of type List needs unchecked conversion to conform to List<String>
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/ElementPropertiesChecker.java
 (at line 105)
String elementName = nodeName.substring(index + 1);
The local variable elementName is never read

/src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java : 39 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 143)
Set /* String (import names) */existingImports;
Set is a raw type. References to generic type Set<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 190)
private Set /* String */getExistingImports(CompilationUnit root) {
Set is a raw type. References to generic type Set<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 191)
List imports = root.imports();
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 192)
Set res = new HashSet(imports.size());
Set is a raw type. References to generic type Set<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 192)
Set res = new HashSet(imports.size());
HashSet is a raw type. References to generic type HashSet<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 194)
res.add(ASTNodes.asString((ImportDeclaration) imports.get(i)));
Type safety: The method add(Object) belongs to the raw type Set. References to generic type Set<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 204)
Set existingImports = helper.getExistingImports(astRoot);
Set is a raw type. References to generic type Set<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 210)
private void removeUnusedImports(ICompilationUnit cu, Set existingImports, boolean needsSave) throws CoreException {
Set is a raw type. References to generic type Set<E> should be parameterized
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 220)
List importsDecls = root.imports();
List is a raw type. References to generic type List<E> should be parameterized
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 338)
Set /* String (import names) */existingImports;
Set is a raw type. References to generic type Set<E> should be parameterized

/src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java : 6 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java
 (at line 27)
protected void createAlphebeticalGrouping(IMenuManager menu, List actionList) {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java
 (at line 30)
Arrays.sort(array, comparator);
Type safety: Unchecked invocation sort(Object[], Comparator) of the generic method sort(T[], Comparator<? super T>) of type Arrays
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java
 (at line 30)
Arrays.sort(array, comparator);
Type safety: The expression of type Comparator needs unchecked conversion to conform to Comparator<? super Object>

/src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java : 26 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 62)
IContributionItem[] items = addAttributeMenu.getItems();
The local variable items is never read
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 65)
String tagName = node.getNodeName();
The local variable tagName is never read
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 71)
List<Action> actionPropertyCollector = new ArrayList<Action>();
The local variable actionPropertyCollector is never read
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 72)
List<Action> actionAttachedPropertyCollector = new ArrayList<Action>();
The local variable actionAttachedPropertyCollector is never read
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 73)
List<Action> actionEventCollector = new ArrayList<Action>();
The local variable actionEventCollector is never read
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 83)
ImageDescriptor proppertyImageDescriptor = JavaPluginImages.getDescriptor(JavaPluginImages.IMG_FIELD_PUBLIC);
The local variable proppertyImageDescriptor is never read
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 242)
List<Action> propertyElementCollector = new ArrayList<Action>();
The local variable propertyElementCollector is never read
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 243)
List<Action> elementCollector = new ArrayList<Action>();
The local variable elementCollector is never read
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 244)
List<Action> resourcesCollector = new ArrayList<Action>();
The local variable resourcesCollector is never read
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 246)
IContributionItem[] items = addChildMenu.getItems();
The local variable items is never read

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings

/src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java : 43 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 27)
import org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor;
Discouraged access: The type CompilationUnitEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 31)
import org.eclipse.wst.sse.core.internal.provisional.IndexedRegion;
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 32)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 33)
import org.eclipse.wst.sse.ui.internal.contentassist.ContentAssistUtils;
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 34)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMAttr;
Discouraged access: The type IDOMAttr is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 35)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 65)
public void remove(final IDOMNode node) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 85)
protected String getFullTypeName(IDOMNode node) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 163)
StructuredTextViewer textViewer = getEditor().getTextEditor().getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 165)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 165)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 165)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The method getNodeAt(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 171)
IDOMNode xmlnode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 171)
IDOMNode xmlnode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 188)
IDOMAttr attrNode = (IDOMAttr) nodeMap.item(i);
Discouraged access: The type IDOMAttr is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 188)
IDOMAttr attrNode = (IDOMAttr) nodeMap.item(i);
Discouraged access: The type IDOMAttr is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 189)
int endOffset = attrNode.getEndOffset();
Discouraged access: The method getEndOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 190)
int startOffset = attrNode.getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 221)
StructuredTextViewer textViewer = getEditor().getTextEditor().getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 223)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 223)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 223)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The method getNodeAt(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 228)
IDOMNode xmlnode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 228)
IDOMNode xmlnode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 276)
StructuredTextViewer textViewer = getEditor().getTextEditor().getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 278)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 278)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 278)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The method getNodeAt(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 283)
IDOMNode xmlnode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
30. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 283)
IDOMNode xmlnode = (IDOMNode) node;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
31. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 392)
CompilationUnitEditor javaEditor = ((XWTEditor) getEditor()).getJavaEditor();
Discouraged access: The type CompilationUnitEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
32. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 394)
javaEditor.setSelection(method);
Discouraged access: The method setSelection(IJavaElement) from the type JavaEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
33. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 408)
private void modifyAllRelativeHandlerName(StructuredTextViewer textViewer, int offset, String inputHandler, String oldAttrValue) {
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
34. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 409)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
35. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 409)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
36. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTCodeSynchronizer.java
 (at line 409)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The method getNodeAt(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar

/src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java : 100 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 40)
import org.eclipse.jdt.internal.core.JavaProject;
Discouraged access: The type JavaProject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 41)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 55)
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 56)
import org.eclipse.wst.sse.core.internal.provisional.text.ITextRegion;
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 57)
import org.eclipse.wst.sse.core.internal.provisional.text.ITextRegionList;
Discouraged access: The type ITextRegionList is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 58)
import org.eclipse.wst.xml.core.internal.contentmodel.CMElementDeclaration;
Discouraged access: The type CMElementDeclaration is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 59)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 60)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMText;
Discouraged access: The type IDOMText is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 61)
import org.eclipse.wst.xml.core.internal.regions.DOMRegionContext;
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 62)
import org.eclipse.wst.xml.ui.internal.XMLUIPlugin;
Discouraged access: The type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 63)
import org.eclipse.wst.xml.ui.internal.contentassist.AbstractContentAssistProcessor;
Discouraged access: The type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 64)
import org.eclipse.wst.xml.ui.internal.contentassist.ContentAssistRequest;
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 65)
import org.eclipse.wst.xml.ui.internal.editor.XMLEditorPluginImages;
Discouraged access: The type XMLEditorPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 66)
import org.eclipse.wst.xml.ui.internal.preferences.XMLUIPreferenceNames;
Discouraged access: The type XMLUIPreferenceNames is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 67)
import org.eclipse.wst.xml.ui.internal.templates.TemplateContextTypeIdsXML;
Discouraged access: The type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 72)
public class XWTContentAssistProcessor extends AbstractContentAssistProcessor implements IPropertyChangeListener {
Discouraged access: The type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 94)
Image image = ImageManager.get(XMLEditorPluginImages.IMG_OBJ_ATTRIBUTE);
Discouraged access: The type XMLEditorPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 94)
Image image = ImageManager.get(XMLEditorPluginImages.IMG_OBJ_ATTRIBUTE);
Discouraged access: The field IMG_OBJ_ATTRIBUTE from the type XMLEditorPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 170)
protected void addAttributeNameProposals(ContentAssistRequest contentAssistRequest) {
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 173)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.ATTRIBUTE);
Discouraged access: The type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 173)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.ATTRIBUTE);
Discouraged access: The field ATTRIBUTE from the type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 174)
super.addAttributeNameProposals(contentAssistRequest);
Discouraged access: The method addAttributeNameProposals(ContentAssistRequest) from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 177)
private void addXAMLPropertyNameProposals(ContentAssistRequest contentAssistRequest) {
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 182)
Node node = contentAssistRequest.getNode();
Discouraged access: The method getNode() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 192)
boolean useProposalList = !contentAssistRequest.shouldSeparate();
Discouraged access: The method shouldSeparate() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 193)
int offset = contentAssistRequest.getReplacementBeginPosition();
Discouraged access: The method getReplacementBeginPosition() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 194)
int replacementLength = contentAssistRequest.getReplacementLength();
Discouraged access: The method getReplacementLength() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 195)
IDocument document = fTextViewer.getDocument();
Discouraged access: The field fTextViewer from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 223)
Image image = JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
30. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 223)
Image image = JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The method get(String) from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
31. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 223)
Image image = JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
32. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 223)
Image image = JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The field IMG_FIELD_PUBLIC from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
33. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 272)
contentAssistRequest.addProposal(proposal);
Discouraged access: The method addProposal(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
34. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 276)
contentAssistRequest.addMacro(proposal);
Discouraged access: The method addMacro(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
35. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 281)
protected void addAttributeValueProposals(ContentAssistRequest contentAssistRequest) {
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
36. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 284)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.ATTRIBUTE_VALUE);
Discouraged access: The type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
37. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 284)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.ATTRIBUTE_VALUE);
Discouraged access: The field ATTRIBUTE_VALUE from the type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
38. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 285)
super.addAttributeValueProposals(contentAssistRequest);
Discouraged access: The method addAttributeValueProposals(ContentAssistRequest) from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
39. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 288)
private void addXAMLPropertyValueProposals(ContentAssistRequest contentAssistRequest) {
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
40. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 292)
IDOMNode node = (IDOMNode) contentAssistRequest.getNode();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
41. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 292)
IDOMNode node = (IDOMNode) contentAssistRequest.getNode();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
42. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 292)
IDOMNode node = (IDOMNode) contentAssistRequest.getNode();
Discouraged access: The method getNode() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
43. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 295)
StyledText textWidget = fTextViewer.getTextWidget();
Discouraged access: The field fTextViewer from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
44. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 299)
IStructuredDocumentRegion open = node.getFirstStructuredDocumentRegion();
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
45. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 299)
IStructuredDocumentRegion open = node.getFirstStructuredDocumentRegion();
Discouraged access: The method getFirstStructuredDocumentRegion() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
46. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 300)
ITextRegionList openRegions = open.getRegions();
Discouraged access: The type ITextRegionList is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
47. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 300)
ITextRegionList openRegions = open.getRegions();
Discouraged access: The method getRegions() from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
48. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 301)
int m = openRegions.indexOf(contentAssistRequest.getRegion());
Discouraged access: The method indexOf(ITextRegion) from the type ITextRegionList is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
49. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 301)
int m = openRegions.indexOf(contentAssistRequest.getRegion());
Discouraged access: The method getRegion() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
50. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 305)
ITextRegion nameRegion = null;
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
51. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 307)
nameRegion = openRegions.get(m--);
Discouraged access: The method get(int) from the type ITextRegionList is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
52. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 308)
if (nameRegion.getType() == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME) {
Discouraged access: The method getType() from the type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
53. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 308)
if (nameRegion.getType() == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME) {
Discouraged access: The type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
54. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 308)
if (nameRegion.getType() == DOMRegionContext.XML_TAG_ATTRIBUTE_NAME) {
Discouraged access: The field XML_TAG_ATTRIBUTE_NAME from the type DOMRegionContext is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
55. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 316)
CMElementDeclaration elementDecl = getCMElementDeclaration(node);
Discouraged access: The type CMElementDeclaration is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
56. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 316)
CMElementDeclaration elementDecl = getCMElementDeclaration(node);
Discouraged access: The method getCMElementDeclaration(Node) from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
57. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 319)
String attributeName = open.getText(nameRegion);
Discouraged access: The method getText(ITextRegion) from the type ITextRegionCollection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
58. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 322)
int offset = contentAssistRequest.getReplacementBeginPosition();
Discouraged access: The method getReplacementBeginPosition() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
59. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 323)
int replacementLength = contentAssistRequest.getReplacementLength();
Discouraged access: The method getReplacementLength() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
60. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 324)
boolean useProposalList = !contentAssistRequest.shouldSeparate();
Discouraged access: The method shouldSeparate() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
61. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 331)
IDocument document = fTextViewer.getDocument();
Discouraged access: The field fTextViewer from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
62. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 364)
contentAssistRequest.addProposal(proposal);
Discouraged access: The method addProposal(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
63. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 368)
contentAssistRequest.addMacro(proposal);
Discouraged access: The method addMacro(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
64. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 394)
contentAssistRequest.addProposal(proposal);
Discouraged access: The method addProposal(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
65. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 398)
contentAssistRequest.addMacro(proposal);
Discouraged access: The method addMacro(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
66. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 437)
Image image = ImageManager.get(XMLEditorPluginImages.IMG_OBJ_ENUM);
Discouraged access: The type XMLEditorPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
67. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 437)
Image image = ImageManager.get(XMLEditorPluginImages.IMG_OBJ_ENUM);
Discouraged access: The field IMG_OBJ_ENUM from the type XMLEditorPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
68. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 464)
JavaProject javaProject = (JavaProject) textWidget.getData("javaProject");
Discouraged access: The type JavaProject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
69. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 464)
JavaProject javaProject = (JavaProject) textWidget.getData("javaProject");
Discouraged access: The type JavaProject is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
70. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 467)
int offset = contentAssistRequest.getReplacementBeginPosition();
Discouraged access: The method getReplacementBeginPosition() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
71. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 469)
IDocument document = fTextViewer.getDocument();
Discouraged access: The field fTextViewer from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
72. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 476)
int replacementLength = contentAssistRequest.getReplacementLength();
Discouraged access: The method getReplacementLength() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
73. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 477)
boolean useProposalList = !contentAssistRequest.shouldSeparate();
Discouraged access: The method shouldSeparate() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
74. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 498)
contentAssistRequest.addProposal(proposal);
Discouraged access: The method addProposal(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
75. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 502)
contentAssistRequest.addMacro(proposal);
Discouraged access: The method addMacro(ICompletionProposal) from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
76. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 507)
protected void addEmptyDocumentProposals(ContentAssistRequest contentAssistRequest) {
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
77. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 508)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.NEW);
Discouraged access: The type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
78. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 508)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.NEW);
Discouraged access: The field NEW from the type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
79. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 509)
super.addEmptyDocumentProposals(contentAssistRequest);
Discouraged access: The method addEmptyDocumentProposals(ContentAssistRequest) from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
80. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 513)
protected void addTagInsertionProposals(ContentAssistRequest contentAssistRequest, int childPosition) {
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
81. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 515)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.TAG);
Discouraged access: The type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
82. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 515)
addTemplates(contentAssistRequest, TemplateContextTypeIdsXML.TAG);
Discouraged access: The field TAG from the type TemplateContextTypeIdsXML is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
83. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 516)
super.addTagInsertionProposals(contentAssistRequest, childPosition);
Discouraged access: The method addTagInsertionProposals(ContentAssistRequest, int) from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
84. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 519)
private void addXAMLElementProposals(ContentAssistRequest contentAssistRequest) {
Discouraged access: The type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
85. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 525)
boolean useProposalList = !contentAssistRequest.shouldSeparate();
Discouraged access: The method shouldSeparate() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
86. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 526)
int offset = contentAssistRequest.getReplacementBeginPosition();
Discouraged access: The method getReplacementBeginPosition() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
87. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 527)
int replacementLength = contentAssistRequest.getReplacementLength();
Discouraged access: The method getReplacementLength() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
88. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 530)
IDocument document = fTextViewer.getDocument();
Discouraged access: The field fTextViewer from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
89. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 535)
Node node = contentAssistRequest.getNode();
Discouraged access: The method getNode() from the type ContentAssistRequest is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
90. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 539)
if (node instanceof IDOMText) {
Discouraged access: The type IDOMText is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
91. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 540)
IDOMText text = (IDOMText) node;
Discouraged access: The type IDOMText is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
92. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 540)
IDOMText text = (IDOMText) node;
Discouraged access: The type IDOMText is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
93. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 541)
offset = text.getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
94. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 542)
replacementLength = text.getLength();
Discouraged access: The method getLength() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
95. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 544)
IDocument document = fTextViewer.getDocument();
Discouraged access: The field fTextViewer from the type AbstractContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
96. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java
 (at line 548)
} else if (node instanceof IDOMNode) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar

/src/org/eclipse/e4/xwt/ui/editor/XWTContentOutlineConfiguration.java : 2 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentOutlineConfiguration.java
 (at line 15)
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentOutlineConfiguration.java
 (at line 24)
return new XWTNodeActionManager((IStructuredModel) treeViewer.getInput(), treeViewer);
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar

/src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java : 20 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 13)
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 14)
import org.eclipse.wst.sse.core.internal.provisional.text.ITextRegion;
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 15)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 16)
import org.eclipse.wst.xml.ui.internal.taginfo.XMLTagInfoHoverProcessor;
Discouraged access: The type XMLTagInfoHoverProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 18)
public class XWTDocumentationTextHover extends XMLTagInfoHoverProcessor {
Discouraged access: The type XMLTagInfoHoverProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 25)
protected String computeTagAttNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 25)
protected String computeTagAttNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 25)
protected String computeTagAttNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 25)
protected String computeTagAttNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 27)
return super.computeTagAttNameHelp(xmlnode, parentNode, flatNode, region);
Discouraged access: The method computeTagAttNameHelp(IDOMNode, IDOMNode, IStructuredDocumentRegion, ITextRegion) from the type XMLTagInfoHoverProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 31)
protected String computeTagAttValueHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 31)
protected String computeTagAttValueHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 31)
protected String computeTagAttValueHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 31)
protected String computeTagAttValueHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 33)
return super.computeTagAttValueHelp(xmlnode, parentNode, flatNode, region);
Discouraged access: The method computeTagAttValueHelp(IDOMNode, IDOMNode, IStructuredDocumentRegion, ITextRegion) from the type XMLTagInfoHoverProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 37)
protected String computeTagNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 37)
protected String computeTagNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 37)
protected String computeTagNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type IStructuredDocumentRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 37)
protected String computeTagNameHelp(IDOMNode xmlnode, IDOMNode parentNode, IStructuredDocumentRegion flatNode, ITextRegion region) {
Discouraged access: The type ITextRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTDocumentationTextHover.java
 (at line 39)
return super.computeTagNameHelp(xmlnode, parentNode, flatNode, region);
Discouraged access: The method computeTagNameHelp(IDOMNode, IDOMNode, IStructuredDocumentRegion, ITextRegion) from the type XMLTagInfoHoverProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar

/src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java : 48 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 39)
import org.eclipse.jdt.internal.core.JavaModelManager;
Discouraged access: The type JavaModelManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 40)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 41)
import org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor;
Discouraged access: The type CompilationUnitEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 42)
import org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart;
Discouraged access: The type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 69)
import org.eclipse.ui.internal.progress.ProgressManager;
Discouraged access: The type ProgressManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.ui.workbench_3.6.0.I20091117-0800.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 71)
import org.eclipse.wst.xml.ui.internal.XMLUIPlugin;
Discouraged access: The type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 72)
import org.eclipse.wst.xml.ui.internal.tabletree.IDesignViewer;
Discouraged access: The type IDesignViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 73)
import org.eclipse.wst.xml.ui.internal.tabletree.XMLTableTreeHelpContextIds;
Discouraged access: The type XMLTableTreeHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 77)
private CompilationUnitEditor javaEditor;
Discouraged access: The type CompilationUnitEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 104)
public CompilationUnitEditor getJavaEditor() {
Discouraged access: The type CompilationUnitEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 119)
protected IDesignViewer createDesignPage() {
Discouraged access: The type IDesignViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 122)
XMLUIPlugin.getInstance().getWorkbench().getHelpSystem().setHelp(tableTreeViewer.getControl(), XMLTableTreeHelpContextIds.XML_DESIGN_VIEW_HELPID);
Discouraged access: The type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 122)
XMLUIPlugin.getInstance().getWorkbench().getHelpSystem().setHelp(tableTreeViewer.getControl(), XMLTableTreeHelpContextIds.XML_DESIGN_VIEW_HELPID);
Discouraged access: The method getInstance() from the type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 122)
XMLUIPlugin.getInstance().getWorkbench().getHelpSystem().setHelp(tableTreeViewer.getControl(), XMLTableTreeHelpContextIds.XML_DESIGN_VIEW_HELPID);
Discouraged access: The type XMLTableTreeHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 122)
XMLUIPlugin.getInstance().getWorkbench().getHelpSystem().setHelp(tableTreeViewer.getControl(), XMLTableTreeHelpContextIds.XML_DESIGN_VIEW_HELPID);
Discouraged access: The field XML_DESIGN_VIEW_HELPID from the type XMLTableTreeHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 151)
generateTool.setImage(JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 151)
generateTool.setImage(JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The method get(String) from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 151)
generateTool.setImage(JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 151)
generateTool.setImage(JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The field IMG_OBJS_CLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 197)
javaEditor = new CompilationUnitEditor();
Discouraged access: The constructor CompilationUnitEditor() is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 197)
javaEditor = new CompilationUnitEditor();
Discouraged access: The type CompilationUnitEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 200)
setPageImage(javaPageIndex, JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 200)
setPageImage(javaPageIndex, JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The method get(String) from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 200)
setPageImage(javaPageIndex, JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 200)
setPageImage(javaPageIndex, JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS));
Discouraged access: The field IMG_OBJS_CLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 239)
javaEditor.doSave(monitor);
Discouraged access: The method doSave(IProgressMonitor) from the type CompilationUnitEditor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 298)
JavaModelManager.getDeltaState().addElementChangedListener(elementChangedListener, eventMask);
Discouraged access: The type JavaModelManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 298)
JavaModelManager.getDeltaState().addElementChangedListener(elementChangedListener, eventMask);
Discouraged access: The method getDeltaState() from the type JavaModelManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 298)
JavaModelManager.getDeltaState().addElementChangedListener(elementChangedListener, eventMask);
Discouraged access: The method addElementChangedListener(IElementChangedListener, int) from the type DeltaProcessingState is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
30. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 303)
JavaModelManager.getDeltaState().removeElementChangedListener(elementChangedListener);
Discouraged access: The type JavaModelManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
31. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 303)
JavaModelManager.getDeltaState().removeElementChangedListener(elementChangedListener);
Discouraged access: The method getDeltaState() from the type JavaModelManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
32. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 303)
JavaModelManager.getDeltaState().removeElementChangedListener(elementChangedListener);
Discouraged access: The method removeElementChangedListener(IElementChangedListener) from the type DeltaProcessingState is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.core_3.6.0.v_A22.jar
33. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 353)
final PackageExplorerPart part = PackageExplorerPart.getFromActivePerspective();
Discouraged access: The type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
34. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 353)
final PackageExplorerPart part = PackageExplorerPart.getFromActivePerspective();
Discouraged access: The type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
35. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 353)
final PackageExplorerPart part = PackageExplorerPart.getFromActivePerspective();
Discouraged access: The method getFromActivePerspective() from the type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
36. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 355)
TreeViewer treeViewer = part.getTreeViewer();
Discouraged access: The method getTreeViewer() from the type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
37. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 360)
part.setLinkingEnabled(false);
Discouraged access: The method setLinkingEnabled(boolean) from the type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
38. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 368)
ProgressManager progresManager = (ProgressManager) getSite().getWorkbenchWindow().getWorkbench().getProgressService();
Discouraged access: The type ProgressManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.ui.workbench_3.6.0.I20091117-0800.jar
39. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 368)
ProgressManager progresManager = (ProgressManager) getSite().getWorkbenchWindow().getWorkbench().getProgressService();
Discouraged access: The type ProgressManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.ui.workbench_3.6.0.I20091117-0800.jar
40. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 369)
IProgressMonitor monitor = progresManager.getDefaultMonitor();
Discouraged access: The method getDefaultMonitor() from the type ProgressManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.ui.workbench_3.6.0.I20091117-0800.jar
41. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 391)
PackageExplorerPart part = PackageExplorerPart.getFromActivePerspective();
Discouraged access: The type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
42. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 391)
PackageExplorerPart part = PackageExplorerPart.getFromActivePerspective();
Discouraged access: The type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
43. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 391)
PackageExplorerPart part = PackageExplorerPart.getFromActivePerspective();
Discouraged access: The method getFromActivePerspective() from the type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
44. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 393)
part.setLinkingEnabled(true);
Discouraged access: The method setLinkingEnabled(boolean) from the type PackageExplorerPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
45. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditor.java
 (at line 405)
super.setFocus();
Discouraged access: The method setFocus() from the type XMLMultiPageEditorPart is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar

/src/org/eclipse/e4/xwt/ui/editor/XWTEditorContributor.java : 3 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditorContributor.java
 (at line 14)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditorContributor.java
 (at line 119)
javaAction.setImageDescriptor(JavaPluginImages.DESC_OBJS_CLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTEditorContributor.java
 (at line 119)
javaAction.setImageDescriptor(JavaPluginImages.DESC_OBJS_CLASS);
Discouraged access: The field DESC_OBJS_CLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar

/src/org/eclipse/e4/xwt/ui/editor/XWTStructuredTextViewerConfiguration.java : 3 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTStructuredTextViewerConfiguration.java
 (at line 18)
import org.eclipse.wst.xml.ui.internal.contentassist.NoRegionContentAssistProcessor;
Discouraged access: The type NoRegionContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTStructuredTextViewerConfiguration.java
 (at line 31)
processors = new IContentAssistProcessor[] { new NoRegionContentAssistProcessor() };
Discouraged access: The constructor NoRegionContentAssistProcessor() is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTStructuredTextViewerConfiguration.java
 (at line 31)
processors = new IContentAssistProcessor[] { new NoRegionContentAssistProcessor() };
Discouraged access: The type NoRegionContentAssistProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar

/src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java : 19 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 23)
import org.eclipse.wst.sse.core.internal.provisional.IndexedRegion;
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 25)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 26)
import org.eclipse.wst.sse.ui.internal.contentassist.ContentAssistUtils;
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 27)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 41)
StructuredTextViewer textViewer = fTextEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 45)
IndexedRegion root = ContentAssistUtils.getNodeAt(textViewer, 0);
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 45)
IndexedRegion root = ContentAssistUtils.getNodeAt(textViewer, 0);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 45)
IndexedRegion root = ContentAssistUtils.getNodeAt(textViewer, 0);
Discouraged access: The method getNodeAt(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 53)
StructuredTextViewer textViewer = textEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 71)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 71)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 71)
IndexedRegion treeNode = ContentAssistUtils.getNodeAt(textViewer, offset);
Discouraged access: The method getNodeAt(ITextViewer, int) from the type ContentAssistUtils is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 81)
if (node instanceof IDOMNode) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 82)
startOffset = ((IDOMNode) node).getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 82)
startOffset = ((IDOMNode) node).getStartOffset();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 85)
if (node instanceof IDOMNode) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 86)
endOffset = ((IDOMNode) node).getEndOffset();
Discouraged access: The method getEndOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 86)
endOffset = ((IDOMNode) node).getEndOffset();
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/editor/checkers/AbstractProblemChecker.java
 (at line 90)
StructuredTextViewer textViewer = fTextEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar

/src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java : 7 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java
 (at line 30)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java
 (at line 31)
import org.eclipse.wst.xml.ui.internal.XMLUIPlugin;
Discouraged access: The type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java
 (at line 74)
ContextTypeRegistry registry = XMLUIPlugin.getDefault().getTemplateContextRegistry();
Discouraged access: The type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java
 (at line 74)
ContextTypeRegistry registry = XMLUIPlugin.getDefault().getTemplateContextRegistry();
Discouraged access: The method getDefault() from the type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java
 (at line 74)
ContextTypeRegistry registry = XMLUIPlugin.getDefault().getTemplateContextRegistry();
Discouraged access: The method getTemplateContextRegistry() from the type XMLUIPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java
 (at line 132)
StructuredTextViewer textViewer = editor.getTextEditor().getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/DnDAdapterImpl.java
 (at line 137)
StructuredTextViewer textViewer = editor.getTextEditor().getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar

/src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java : 17 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 28)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 49)
private IDOMNode acceptAttr;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 129)
IDOMNode node = (IDOMNode) getCurrentNode(event);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 129)
IDOMNode node = (IDOMNode) getCurrentNode(event);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 156)
private boolean hasImageFeature(IDOMNode node) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 171)
private int getInsertion(IDOMNode acceptAttr, int cursor) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 175)
return acceptAttr.getStartOffset() + acceptAttr.getNodeName().length() + 2;
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 178)
private IDOMNode getAttr(IDOMNode node, int cursor) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 178)
private IDOMNode getAttr(IDOMNode node, int cursor) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 184)
IDOMNode attr = (IDOMNode) attributes.item(i);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 184)
IDOMNode attr = (IDOMNode) attributes.item(i);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 185)
int startOffset = attr.getStartOffset();
Discouraged access: The method getStartOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 186)
int endOffset = attr.getEndOffset();
Discouraged access: The method getEndOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 194)
private IDOMNode getImageAttr(IDOMNode node) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 194)
private IDOMNode getImageAttr(IDOMNode node) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 200)
IDOMNode attr = (IDOMNode) attributes.item(i);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/ImageDnDAdapter.java
 (at line 200)
IDOMNode attr = (IDOMNode) attributes.item(i);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar

/src/org/eclipse/e4/xwt/ui/editor/dnd/PaletteDnDAdapter.java : 6 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/PaletteDnDAdapter.java
 (at line 24)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/PaletteDnDAdapter.java
 (at line 25)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/PaletteDnDAdapter.java
 (at line 87)
StructuredTextViewer textViewer = textEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/PaletteDnDAdapter.java
 (at line 90)
while (node.getNodeType() == IDOMNode.TEXT_NODE) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/PaletteDnDAdapter.java
 (at line 117)
StructuredTextViewer textViewer = textEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/PaletteDnDAdapter.java
 (at line 120)
while (node.getNodeType() == IDOMNode.TEXT_NODE) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar

/src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java : 10 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 32)
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 33)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMAttr;
Discouraged access: The type IDOMAttr is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 34)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 114)
StructuredTextViewer textViewer = textEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 115)
IDOMNode node = VEXTextEditorHelper.getNode(textViewer, 0);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 210)
StructuredTextViewer textViewer = textEditor.getTextViewer();
Discouraged access: The type StructuredTextViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.ui_1.1.200.v200910212138.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 211)
IDOMNode node = VEXTextEditorHelper.getNode(textViewer, 0);
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 215)
IDOMAttr attr = (IDOMAttr) attributes.item(i);
Discouraged access: The type IDOMAttr is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 215)
IDOMAttr attr = (IDOMAttr) attributes.item(i);
Discouraged access: The type IDOMAttr is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/dnd/UserDefinedDnDAdapter.java
 (at line 218)
dropNsIndex = attr.getEndOffset();
Discouraged access: The method getEndOffset() from the type IndexedRegion is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar

/src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java : 39 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 37)
import org.eclipse.jdt.internal.corext.codemanipulation.StubUtility;
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 38)
import org.eclipse.jdt.internal.corext.dom.ASTNodes;
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 39)
import org.eclipse.jdt.internal.corext.util.CodeFormatterUtil;
Discouraged access: The type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 40)
import org.eclipse.jdt.internal.corext.util.JavaModelUtil;
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 41)
import org.eclipse.jdt.internal.corext.util.Strings;
Discouraged access: The type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 101)
JavaModelUtil.applyEdit(fImportsRewrite.getCompilationUnit(), edit, needsSave, null);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 101)
JavaModelUtil.applyEdit(fImportsRewrite.getCompilationUnit(), edit, needsSave, null);
Discouraged access: The method applyEdit(ICompilationUnit, TextEdit, boolean, IProgressMonitor) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 145)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 145)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The method getLineDelimiterUsed(IJavaProject) from the type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 164)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 164)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 171)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, indent, lineDelimiter, type.getJavaProject());
Discouraged access: The type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 171)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, indent, lineDelimiter, type.getJavaProject());
Discouraged access: The method format(int, String, int, String, IJavaProject) from the type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 172)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 172)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The method trimLeadingTabsAndSpaces(String) from the type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 194)
res.add(ASTNodes.asString((ImportDeclaration) imports.get(i)));
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 194)
res.add(ASTNodes.asString((ImportDeclaration) imports.get(i)));
Discouraged access: The method asString(ASTNode) from the type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 226)
int importsEnd = ASTNodes.getExclusiveEnd((ASTNode) importsDecls.get(importsDecls.size() - 1));
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 226)
int importsEnd = ASTNodes.getExclusiveEnd((ASTNode) importsDecls.get(importsDecls.size() - 1));
Discouraged access: The method getExclusiveEnd(ASTNode) from the type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 240)
if (existingImports.isEmpty() || !existingImports.contains(ASTNodes.asString(decl))) {
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 240)
if (existingImports.isEmpty() || !existingImports.contains(ASTNodes.asString(decl))) {
Discouraged access: The method asString(ASTNode) from the type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 340)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 340)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The method getLineDelimiterUsed(IJavaProject) from the type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 358)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 358)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 365)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, 0, lineDelimiter, type.getJavaProject());
Discouraged access: The type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 365)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, 0, lineDelimiter, type.getJavaProject());
Discouraged access: The method format(int, String, int, String, IJavaProject) from the type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 366)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/editor/jdt/ASTHelper.java
 (at line 366)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The method trimLeadingTabsAndSpaces(String) from the type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar

/src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java : 6 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java
 (at line 19)
import org.eclipse.wst.xml.ui.internal.actions.MenuBuilder;
Discouraged access: The type MenuBuilder is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java
 (at line 21)
public class XWTMenuBuilder extends MenuBuilder {
Discouraged access: The type MenuBuilder is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTMenuBuilder.java
 (at line 30)
Arrays.sort(array, comparator);
Discouraged access: The field comparator from the type MenuBuilder is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar

/src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java : 26 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 17)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 24)
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 25)
import org.eclipse.wst.xml.ui.internal.XMLUIMessages;
Discouraged access: The type XMLUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 26)
import org.eclipse.wst.xml.ui.internal.contentoutline.XMLNodeActionManager;
Discouraged access: The type XMLNodeActionManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 30)
public class XWTNodeActionManager extends XMLNodeActionManager {
Discouraged access: The type XMLNodeActionManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 32)
public XWTNodeActionManager(IStructuredModel model, Viewer viewer) {
Discouraged access: The type IStructuredModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.sse.core_1.1.500.v200910202110.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 33)
super(model, viewer);
Discouraged access: The constructor XMLNodeActionManager(IStructuredModel, Viewer) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 38)
super.contributeAddChildActions(menu, node, ic, vc);
Discouraged access: The method contributeAddChildActions(IMenuManager, Node, int, int) from the type BaseNodeActionManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 47)
String message = XMLUIMessages._UI_MENU_ADD_ATTRIBUTE;
Discouraged access: The type XMLUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 47)
String message = XMLUIMessages._UI_MENU_ADD_ATTRIBUTE;
Discouraged access: The field _UI_MENU_ADD_ATTRIBUTE from the type XMLUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 83)
ImageDescriptor proppertyImageDescriptor = JavaPluginImages.getDescriptor(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 83)
ImageDescriptor proppertyImageDescriptor = JavaPluginImages.getDescriptor(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The method getDescriptor(String) from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 83)
ImageDescriptor proppertyImageDescriptor = JavaPluginImages.getDescriptor(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 83)
ImageDescriptor proppertyImageDescriptor = JavaPluginImages.getDescriptor(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The field IMG_FIELD_PUBLIC from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.jdt.ui_3.6.0.v20091117-0800.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 228)
String message = XMLUIMessages._UI_MENU_ADD_CHILD;
Discouraged access: The type XMLUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTNodeActionManager.java
 (at line 228)
String message = XMLUIMessages._UI_MENU_ADD_CHILD;
Discouraged access: The field _UI_MENU_ADD_CHILD from the type XMLUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar

/src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java : 7 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java
 (at line 19)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
Discouraged access: The type IDOMDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java
 (at line 20)
import org.eclipse.wst.xml.ui.internal.tabletree.XMLTableTreeViewer;
Discouraged access: The type XMLTableTreeViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java
 (at line 22)
public class XWTTableTreeViewer extends XMLTableTreeViewer {
Discouraged access: The type XMLTableTreeViewer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java
 (at line 25)
super(parent);
Discouraged access: The constructor XMLTableTreeViewer(Composite) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java
 (at line 32)
XWTNodeActionManager nodeActionManager = new XWTNodeActionManager(((IDOMDocument) getInput()).getModel(), XWTTableTreeViewer.this) {
Discouraged access: The method getModel() from the type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java
 (at line 32)
XWTNodeActionManager nodeActionManager = new XWTNodeActionManager(((IDOMDocument) getInput()).getModel(), XWTTableTreeViewer.this) {
Discouraged access: The type IDOMDocument is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.core_1.1.500.v200910202024.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/editor/treeviewer/XWTTableTreeViewer.java
 (at line 34)
nodeActionManager.fillContextMenu(menuManager, getSelection());
Discouraged access: The method fillContextMenu(IMenuManager, ISelection) from the type AbstractNodeActionManager is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20091119/plugins/org.eclipse.wst.xml.ui_1.1.100.v200910281925.jar