errors | others warnings | forbidden warnings | discouraged warnings |
top | others warnings | forbidden warnings | discouraged warnings |
top | errors | forbidden warnings | discouraged warnings |
1. WARNING in /src/org/eclipse/e4/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 |
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 355) 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 534) IEvent[] allEvents = metaclass.getEvents(); The local variable allEvents is never read |
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 245) if (newInput == null) { return false; } Dead code |
3. 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 |
4. 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 |
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 |
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 |
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 |
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> |
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 |
top | errors | others warnings | discouraged warnings |
top | errors | others warnings | forbidden 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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.jar |
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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
16. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 72) public class XWTContentAssistProcessor extends 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
17. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 96) .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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
18. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 96) .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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
19. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 184) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
20. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 187) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
21. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 187) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
22. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 188) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
23. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 192) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
24. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 197) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
25. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 207) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
26. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 208) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
27. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 209) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
28. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 210) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
29. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 242) Image image = 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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.jar |
30. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 242) 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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.jar |
31. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 243) .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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.jar |
32. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 243) .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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.jar |
33. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 306) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
34. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 310) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
35. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 316) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
36. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 320) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
37. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 320) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
38. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 321) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
39. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 325) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
40. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 329) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
41. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 329) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
42. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 329) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
43. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 333) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
44. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 337) IStructuredDocumentRegion open = node 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
45. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 337) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
46. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 339) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
47. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 339) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
48. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 340) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
49. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 340) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
50. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 344) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
51. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 346) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
52. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 347) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
53. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 347) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
54. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 347) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
55. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 355) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
56. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 355) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
57. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 358) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
58. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 362) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
59. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 364) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
60. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 366) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
61. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 374) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
62. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 413) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
63. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 417) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
64. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 448) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
65. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 452) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
66. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 502) .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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
67. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 502) .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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
68. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 535) JavaProject javaProject = (JavaProject) textWidget 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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.jar |
69. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 535) JavaProject javaProject = (JavaProject) textWidget 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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.jar |
70. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 540) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
71. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 543) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
72. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 551) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
73. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 553) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
74. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 579) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
75. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 583) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
76. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 589) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
77. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 590) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
78. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 590) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
79. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 591) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
80. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 596) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
81. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 598) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
82. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 598) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
83. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 599) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
84. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 603) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
85. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 609) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
86. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 610) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
87. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 611) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
88. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 614) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
89. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 619) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
90. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 623) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
91. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 624) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
92. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 624) 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
93. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 625) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
94. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 626) 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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
95. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 628) 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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
96. WARNING in /src/org/eclipse/e4/xwt/ui/editor/XWTContentAssistProcessor.java (at line 633) } 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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.ui.workbench_3.100.0.v20110124-1530.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.core_3.7.0.v_B33.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.ui.workbench_3.100.0.v20110124-1530.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/v20110118/plugins/org.eclipse.ui.workbench_3.100.0.v20110124-1530.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/v20110118/plugins/org.eclipse.ui.workbench_3.100.0.v20110124-1530.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.jar |
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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.jar |
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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.jar |
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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.jar |
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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.ui_1.2.100.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.jar |
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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.jar |
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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.sse.core_1.1.600.v201011021846.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.jdt.ui_3.7.0.v20110126-1300.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |
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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.core_1.1.600.v201010292144.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/v20110118/plugins/org.eclipse.wst.xml.ui_1.1.200.v201011031706.jar |