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/tools/ui/designer/commands/ChangeWeightsCommand.java (at line 86) List<VisualEditPart> editParts = new ArrayList<VisualEditPart>(request .getEditParts()); Type safety: The expression of type List needs unchecked conversion to conform to Collection<? extends VisualEditPart> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/commands/DeleteCommand.java (at line 36) public DeleteCommand(List deleteNodes) { List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/commands/DeleteCommand.java (at line 48) private List<XamlNode> convertNodes(List deleteNodes) { List is a raw type. References to generic type List<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/commands/DeleteCommand.java (at line 53) for (Iterator iterator = deleteNodes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/commands/LayoutCommandsFactory.java (at line 58) public Command getDeleteCommand(List deleteObjects) { List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/commands/NamedCommand.java (at line 14) import org.eclipse.e4.xwt.XWT; The import org.eclipse.e4.xwt.XWT is never used |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/commands/NamedCommand.java (at line 16) import org.eclipse.e4.xwt.internal.core.ScopeManager; The import org.eclipse.e4.xwt.internal.core.ScopeManager is never used |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/databinding/ui/BindingTableGroup.java (at line 322) return ((Collection) inputElement).toArray(new Object[0]); Type safety: The method toArray(Object[]) belongs to the raw type Collection. References to generic type Collection<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/databinding/ui/BindingTableGroup.java (at line 322) return ((Collection) inputElement).toArray(new Object[0]); Collection is a raw type. References to generic type Collection<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/AccessorConfigurationDialog.java (at line 432) List result = new ArrayList(1); List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/AccessorConfigurationDialog.java (at line 432) List result = new ArrayList(1); ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/AccessorConfigurationDialog.java (at line 440) result.add(nonjava[i]); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/AccessorConfigurationDialog.java (at line 539) Class[] acceptedClasses = new Class[] { IPackageFragmentRoot.class, IJavaProject.class }; Class is a raw type. References to generic type Class<T> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/ChangeTextAction.java (at line 56) if (element == null) { return; } Dead code |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/LayoutAssistantAction.java (at line 83) List selectedObjects = getSelectedObjects(); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/OpenExternalizeStringsAction.java (at line 107) List child = editPart.getChildren(); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/PasteElementAction.java (at line 92) List<XamlElement> elements = (List<XamlElement>) contents; Type safety: Unchecked cast from Object to List<XamlElement> |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/PasteElementAction.java (at line 110) List<XamlElement> contents = (List<XamlElement>) Clipboard.getDefault().getContents(); Type safety: Unchecked cast from Object to List<XamlElement> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/SurroundWithAction.java (at line 61) return new SurroundWithCommand(getSelectedObjects()); Type safety: The expression of type List needs unchecked conversion to conform to List<EditPart> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/dnd/EntryCreationTool.java (at line 72) private Image getImageFrom(XamlElement node) { The method getImageFrom(XamlElement) from the type EntryCreationTool is never used locally |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/menus/EventMenuManager.java (at line 251) return Collections.EMPTY_LIST; Type safety: The expression of type List needs unchecked conversion to conform to Collection<String> |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/menus/EventMenuManager.java (at line 269) return Collections.EMPTY_LIST; Type safety: The expression of type List needs unchecked conversion to conform to Collection<String> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelCacheUtility.java (at line 39) private static final Map XML_CACHE_SAVE_OPTIONS; Map is a raw type. References to generic type Map<K,V> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelCacheUtility.java (at line 42) XML_CACHE_SAVE_OPTIONS = new HashMap(4); HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelCacheUtility.java (at line 43) XML_CACHE_SAVE_OPTIONS.put(XMLResource.OPTION_ENCODING, "UTF-8"); //$NON-NLS-1$ Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelCacheUtility.java (at line 44) XML_CACHE_SAVE_OPTIONS.put(XMLResource.OPTION_PROCESS_DANGLING_HREF, XMLResource.OPTION_PROCESS_DANGLING_HREF_RECORD); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelCacheUtility.java (at line 46) XML_CACHE_SAVE_OPTIONS.put(XMLResource.OPTION_SAVE_TYPE_INFORMATION, Boolean.TRUE); Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/OutlinePageDropManager.java (at line 17) import org.eclipse.e4.xwt.tools.ui.designer.editor.palette.EntryHelper; The import org.eclipse.e4.xwt.tools.ui.designer.editor.palette.EntryHelper is never used |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/OutlinePageDropManager.java (at line 18) import org.eclipse.e4.xwt.tools.ui.palette.Entry; The import org.eclipse.e4.xwt.tools.ui.palette.Entry is never used |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/OutlinePageDropManager.java (at line 19) import org.eclipse.e4.xwt.tools.ui.xaml.XamlNode; The import org.eclipse.e4.xwt.tools.ui.xaml.XamlNode is never used |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/OutlinePageDropManager.java (at line 22) import org.eclipse.jface.viewers.ISelection; The import org.eclipse.jface.viewers.ISelection is never used |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/commands/MoveAfterCommand.java (at line 51) for (Iterator iterator = sourceNodes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/commands/MoveBeforeCommand.java (at line 50) for (Iterator iterator = sourceNodes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/commands/MoveCommand.java (at line 65) for (Iterator iterator = sourceNodes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/commands/MoveOnCommand.java (at line 42) for (Iterator iterator = sourceNodes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/outline/commands/MoveOnCommand.java (at line 74) for (Iterator iterator = sourceNodes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/sash/SashFormChildResizableEditPolicy.java (at line 75) List<EditPart> children = sashFormEditPart.getChildren(); Type safety: The expression of type List needs unchecked conversion to conform to List<EditPart> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/sash/SashFormDeleteCommand.java (at line 39) public SashFormDeleteCommand(List deleteNodes) { List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/sash/SashFormDeleteCommand.java (at line 51) private List<XamlNode> convertNodes(List deleteNodes) { List is a raw type. References to generic type List<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/sash/SashFormDeleteCommand.java (at line 56) for (Iterator iterator = deleteNodes.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/text/XWTContentAssistProcessor.java (at line 471) CMElementDeclaration elementDecl = getCMElementDeclaration(node); The local variable elementDecl is never read |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/text/XWTContentAssistProcessor.java (at line 652) IEvent[] allEvents = metaclass.getEvents(); The local variable allEvents is never read |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 81) existingImports = getExistingImports(astRoot); Type safety: The expression of type Set needs unchecked conversion to conform to Set<String> |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 155) Set existingImports = getExistingImports(astUnit); Set is a raw type. References to generic type Set<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 220) Set handleIds = new HashSet(typeMethods.length); Set is a raw type. References to generic type Set<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 220) Set handleIds = new HashSet(typeMethods.length); HashSet is a raw type. References to generic type HashSet<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 222) handleIds.add(typeMethods[index].getHandleIdentifier()); Type safety: The method add(Object) belongs to the raw type Set. References to generic type Set<E> should be parameterized |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 265) Set existingImports = ASTHelper.getExistingImports(astRoot); Set is a raw type. References to generic type Set<E> should be parameterized |
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 271) private static void removeUnusedImports(ICompilationUnit cu, Set existingImports, boolean needsSave) throws CoreException { Set is a raw type. References to generic type Set<E> should be parameterized |
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 281) List importsDecls = root.imports(); List is a raw type. References to generic type List<E> should be parameterized |
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 321) private static Set /* String */getExistingImports(CompilationUnit root) { Set is a raw type. References to generic type Set<E> should be parameterized |
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 322) List imports = root.imports(); List is a raw type. References to generic type List<E> should be parameterized |
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 323) Set res = new HashSet(imports.size()); Set is a raw type. References to generic type Set<E> should be parameterized |
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 323) Set res = new HashSet(imports.size()); HashSet is a raw type. References to generic type HashSet<E> should be parameterized |
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 325) 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 |
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 533) Set /* String (import names) */existingImports; Set is a raw type. References to generic type Set<E> should be parameterized |
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 586) 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/tools/ui/designer/jdt/ProjectHelper.java (at line 165) IClasspathEntry resolvedEntry = JavaCore.getJavaCore().getResolvedClasspathEntry(entry); The static method getResolvedClasspathEntry(IClasspathEntry) from the type JavaCore should be accessed in a static way |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 175) IClasspathContainer classpathContainer = JavaCore.getJavaCore().getClasspathContainer(path, javaProject); The static method getClasspathContainer(IPath, IJavaProject) from the type JavaCore should be accessed in a static way |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/ResourceVisitor.java (at line 338) loadData.setStyles((Collection<IStyle>) styles); Type safety: Unchecked cast from Object to Collection<IStyle> |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/ResourceVisitor.java (at line 680) Collections.EMPTY_MAP); Type safety: The expression of type Map needs unchecked conversion to conform to Map<String,Object> |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/ResourceVisitor.java (at line 691) Collections.EMPTY_MAP); Type safety: The expression of type Map needs unchecked conversion to conform to Map<String,Object> |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/ResourceVisitor.java (at line 712) Collections.EMPTY_MAP); Type safety: The expression of type Map needs unchecked conversion to conform to Map<String,Object> |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/ResourceVisitor.java (at line 1259) collector = (Collection) type.newInstance(); Collection is a raw type. References to generic type Collection<E> should be parameterized |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/ResourceVisitor.java (at line 1363) doCreate(instance, doc, null, Collections.EMPTY_MAP); Type safety: The expression of type Map needs unchecked conversion to conform to Map<String,Object> |
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/ResourceVisitor.java (at line 1838) return contentValue; Dead code |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/loader/XWTProxy.java (at line 301) Collections.EMPTY_MAP); Type safety: The expression of type Map needs unchecked conversion to conform to Map<String,Object> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/CompositeEditPart.java (at line 107) public Object getAdapter(Class key) { Class is a raw type. References to generic type Class<T> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/DataContextEditPart.java (at line 53) protected List getModelSourceConnections() { List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/DiagramEditPart.java (at line 42) protected List getModelChildren() { List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/MenuEditPart.java (at line 60) protected List getModelChildren() { List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/ViewerEditPart.java (at line 72) Iterator children = parent.getChildren().iterator(); Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/ViewerEditPart.java (at line 92) protected List getModelChildren() { List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/WidgetEditPart.java (at line 104) protected List getModelChildren() { List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/WidgetEditPart.java (at line 105) List modelChildren = new ArrayList(getCastModel().getChildNodes()); List is a raw type. References to generic type List<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/WidgetEditPart.java (at line 105) List modelChildren = new ArrayList(getCastModel().getChildNodes()); Type safety: The constructor ArrayList(Collection) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/WidgetEditPart.java (at line 105) List modelChildren = new ArrayList(getCastModel().getChildNodes()); ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/WidgetEditPart.java (at line 106) collectExternalModels(modelChildren); Type safety: The expression of type List needs unchecked conversion to conform to List<Object> |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/WidgetEditPart.java (at line 196) protected List getModelSourceConnections() { List is a raw type. References to generic type List<E> should be parameterized |
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/WidgetEditPart.java (at line 229) protected List getModelTargetConnections() { List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/direct/ElementDirectEditManager.java (at line 30) public ElementDirectEditManager(GraphicalEditPart source, Class editorType, Class is a raw type. References to generic type Class<T> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/figures/MenuFigure.java (at line 94) List<IFigure> children = getChildren(); Type safety: The expression of type List needs unchecked conversion to conform to List<IFigure> |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/parts/figures/MenuFigure.java (at line 131) List<IFigure> children = parent.getChildren(); Type safety: The expression of type List needs unchecked conversion to conform to List<IFigure> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/ComponentEditPolicy.java (at line 34) List editParts = request.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/ComponentEditPolicy.java (at line 37) for (Iterator iterator = editParts.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/ExpandableEditPolicy.java (at line 63) List<EditPart> childList = part.getChildren(); Type safety: The expression of type List needs unchecked conversion to conform to List<EditPart> |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/ExpandableEditPolicy.java (at line 79) List<EditPart> childList = part.getChildren(); Type safety: The expression of type List needs unchecked conversion to conform to List<EditPart> |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/MenuItemExpandableEditPolicy.java (at line 38) List children = getHost().getChildren(); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/FormLayoutEditPolicy.java (at line 238) List editParts = request.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/FormLayoutEditPolicy.java (at line 239) for (Iterator iterator = editParts.iterator(); iterator.hasNext();) { Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 111) List children = getHost().getChildren(); List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 112) Iterator iterator = children.iterator(); Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 195) List children = getHost().getChildren(); List is a raw type. References to generic type List<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 196) Iterator iterator = children.iterator(); Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 262) List children = req.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 385) List children = getChildren((GroupRequest) request); List is a raw type. References to generic type List<E> should be parameterized |
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 386) helper.orphanChildren(children); Type safety: The expression of type List needs unchecked conversion to conform to List<XamlNode> |
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 392) public List getChildren(GroupRequest request) { List is a raw type. References to generic type List<E> should be parameterized |
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 393) List cEP = request.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 394) List children = new ArrayList(cEP.size()); List is a raw type. References to generic type List<E> should be parameterized |
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 394) List children = new ArrayList(cEP.size()); ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized |
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 395) Iterator itr = cEP.iterator(); Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 398) children.add(child); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 455) List editparts = req.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 514) List editParts = request.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/GridLayoutEditPolicy.java (at line 603) List children = getHost().getChildren(); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NonResizableSpannableEditPolicy.java (at line 54) protected List createSelectionHandles() { List is a raw type. References to generic type List<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NonResizableSpannableEditPolicy.java (at line 55) List nonResizeHandles = super.createSelectionHandles(); List is a raw type. References to generic type List<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NonResizableSpannableEditPolicy.java (at line 61) nonResizeHandles.add(createHandle( (GraphicalEditPart) getHost(), PositionConstants.EAST)); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NonResizableSpannableEditPolicy.java (at line 64) nonResizeHandles.add(createHandle( (GraphicalEditPart) getHost(), PositionConstants.WEST)); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NonResizableSpannableEditPolicy.java (at line 66) nonResizeHandles.add(createHandle((GraphicalEditPart) getHost(), PositionConstants.SOUTH)); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NonResizableSpannableEditPolicy.java (at line 88) List editParts = request.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NullLayoutEditPolicy.java (at line 13) import org.eclipse.draw2d.ColorConstants; The import org.eclipse.draw2d.ColorConstants is never used |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NullLayoutEditPolicy.java (at line 14) import org.eclipse.draw2d.IFigure; The import org.eclipse.draw2d.IFigure is never used |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/NullLayoutEditPolicy.java (at line 18) import org.eclipse.draw2d.geometry.Rectangle; The import org.eclipse.draw2d.geometry.Rectangle is never used |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/RowLayoutEditPolicy.java (at line 136) List children = req.getEditParts(); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/TabFolderLayoutEditPolicy.java (at line 14) import org.eclipse.draw2d.geometry.Point; The import org.eclipse.draw2d.geometry.Point is never used |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/TabFolderLayoutEditPolicy.java (at line 19) import org.eclipse.e4.xwt.tools.ui.designer.parts.CompositeEditPart; The import org.eclipse.e4.xwt.tools.ui.designer.parts.CompositeEditPart is never used |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/TabFolderLayoutEditPolicy.java (at line 22) import org.eclipse.e4.xwt.tools.ui.designer.policies.feedback.CrossFeedback; The import org.eclipse.e4.xwt.tools.ui.designer.policies.feedback.CrossFeedback is never used |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/TabFolderLayoutEditPolicy.java (at line 24) import org.eclipse.e4.xwt.tools.ui.designer.utils.FigureUtil; The import org.eclipse.e4.xwt.tools.ui.designer.utils.FigureUtil is never used |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/TabFolderLayoutEditPolicy.java (at line 29) import org.eclipse.gef.GraphicalEditPart; The import org.eclipse.gef.GraphicalEditPart is never used |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/policies/layout/grid/GridLayoutGridFigure.java (at line 49) } else { GridLayout example = new GridLayout(); marginWidth = example.marginWidth; marginHeight = example.marginHeight; horizontalSpacing = example.horizontalSpacing; verticalSpacing = example.verticalSpacing; } Dead code |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 41) Object[] result = dialog.getResult(); The local variable result is never read |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/properties/tabbed/sections/TextSection.java (at line 66) private void externalizeText() { The method externalizeText() from the type TextSection is never used locally |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/ExternalizeStringsWizard.java (at line 376) List child = editPart.getChildren(); List is a raw type. References to generic type List<E> should be parameterized |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/models/TextValueModel.java (at line 25) private Vector content; Vector is a raw type. References to generic type Vector<E> should be parameterized |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/models/TextValueModel.java (at line 27) private List listeners = new ArrayList(); List is a raw type. References to generic type List<E> should be parameterized |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/models/TextValueModel.java (at line 27) private List listeners = new ArrayList(); ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/models/TextValueModel.java (at line 30) content = new Vector(); Vector is a raw type. References to generic type Vector<E> should be parameterized |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/models/TextValueModel.java (at line 34) content.add(element); Type safety: The method add(Object) belongs to the raw type Vector. References to generic type Vector<E> should be parameterized |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/models/TextValueModel.java (at line 50) listeners.add(listener); Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized |
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/wizards/models/TextValueModel.java (at line 61) Iterator iter = listeners.iterator(); Iterator is a raw type. References to generic type Iterator<E> should be parameterized |
top | errors | others warnings | discouraged warnings |
top | errors | others warnings | forbidden warnings |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/databinding/ui/AdvancedBindingDialog.java (at line 27) import org.eclipse.ui.internal.forms.widgets.FormFonts; Discouraged access: The type FormFonts is 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.forms_3.5.100.v20101220.jar |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/AbstractEventHandlerDialog.java (at line 27) 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/tools/ui/designer/dialogs/AbstractEventHandlerDialog.java (at line 28) 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 |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/AbstractEventHandlerDialog.java (at line 41) protected StructuredTextViewer textViewer; 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/tools/ui/designer/dialogs/AbstractEventHandlerDialog.java (at line 44) public AbstractEventHandlerDialog(StructuredTextViewer textViewer, String oldHandler, String attrValue, String[] handlers) { 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/tools/ui/designer/dialogs/AbstractEventHandlerDialog.java (at line 161) Node rootNode = (Node) 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 |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/AbstractEventHandlerDialog.java (at line 161) Node rootNode = (Node) 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/EventHandlerDialog.java (at line 16) 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/tools/ui/designer/dialogs/EventHandlerDialog.java (at line 17) 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/tools/ui/designer/dialogs/EventHandlerDialog.java (at line 23) public EventHandlerDialog(StructuredTextViewer textViewer, String oldHandler, String attrValue, String[] handlers) { 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/tools/ui/designer/dialogs/EventHandlerDialog.java (at line 40) IDOMAttr attrNode = (IDOMAttr) nodeMap.item(j); 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 |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/dialogs/EventHandlerDialog.java (at line 40) IDOMAttr attrNode = (IDOMAttr) nodeMap.item(j); 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/XWTJavaEditor.java (at line 17) 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/tools/ui/designer/editor/XWTJavaEditor.java (at line 24) public class XWTJavaEditor extends 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CopyElementAction.java (at line 28) import org.eclipse.ui.internal.WorkbenchMessages; Discouraged access: The type WorkbenchMessages is 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 |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CopyElementAction.java (at line 37) setText(WorkbenchMessages.Workbench_copy); Discouraged access: The type WorkbenchMessages is 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 |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CopyElementAction.java (at line 37) setText(WorkbenchMessages.Workbench_copy); Discouraged access: The field Workbench_copy from the type WorkbenchMessages is 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 |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CopyElementAction.java (at line 38) setToolTipText(WorkbenchMessages.Workbench_copyToolTip); Discouraged access: The type WorkbenchMessages is 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 |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CopyElementAction.java (at line 38) setToolTipText(WorkbenchMessages.Workbench_copyToolTip); Discouraged access: The field Workbench_copyToolTip from the type WorkbenchMessages is 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CutElementAction.java (at line 29) import org.eclipse.ui.internal.WorkbenchMessages; Discouraged access: The type WorkbenchMessages is 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 |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CutElementAction.java (at line 40) this.setText(WorkbenchMessages.Workbench_cut); Discouraged access: The type WorkbenchMessages is 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 |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CutElementAction.java (at line 40) this.setText(WorkbenchMessages.Workbench_cut); Discouraged access: The field Workbench_cut from the type WorkbenchMessages is 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 |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CutElementAction.java (at line 41) this.setToolTipText(WorkbenchMessages.Workbench_cutToolTip); Discouraged access: The type WorkbenchMessages is 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 |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/CutElementAction.java (at line 41) this.setToolTipText(WorkbenchMessages.Workbench_cutToolTip); Discouraged access: The field Workbench_cutToolTip from the type WorkbenchMessages is 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/PasteElementAction.java (at line 39) import org.eclipse.ui.internal.WorkbenchMessages; Discouraged access: The type WorkbenchMessages is 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 |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/PasteElementAction.java (at line 49) setText(WorkbenchMessages.Workbench_paste); Discouraged access: The type WorkbenchMessages is 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 |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/PasteElementAction.java (at line 49) setText(WorkbenchMessages.Workbench_paste); Discouraged access: The field Workbench_paste from the type WorkbenchMessages is 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 |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/PasteElementAction.java (at line 50) setToolTipText(WorkbenchMessages.Workbench_pasteToolTip); Discouraged access: The type WorkbenchMessages is 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 |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/actions/PasteElementAction.java (at line 50) setToolTipText(WorkbenchMessages.Workbench_pasteToolTip); Discouraged access: The field Workbench_pasteToolTip from the type WorkbenchMessages is 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 25) import org.eclipse.wst.sse.core.internal.provisional.INodeAdapter; Discouraged access: The type INodeAdapter is 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/tools/ui/designer/editor/model/BuilderContext.java (at line 26) 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/tools/ui/designer/editor/model/BuilderContext.java (at line 27) 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 |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 28) import org.eclipse.wst.xml.core.internal.provisional.document.IDOMElement; Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/BuilderContext.java (at line 29) 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 |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 43) private final Map<XamlNode, IDOMNode> model2text = new HashMap<XamlNode, 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/tools/ui/designer/editor/model/BuilderContext.java (at line 43) private final Map<XamlNode, IDOMNode> model2text = new HashMap<XamlNode, 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/tools/ui/designer/editor/model/BuilderContext.java (at line 45) private final Map<IDOMNode, XamlNode> text2model = new HashMap<IDOMNode, XamlNode>( 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/tools/ui/designer/editor/model/BuilderContext.java (at line 45) private final Map<IDOMNode, XamlNode> text2model = new HashMap<IDOMNode, XamlNode>( 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/tools/ui/designer/editor/model/BuilderContext.java (at line 49) private IDOMDocument textRoot; 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 |
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 54) private INodeAdapter nodeAdapter; Discouraged access: The type INodeAdapter is 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 |
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 57) IDOMDocument textDocument, XamlDocument modelDocument, 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 |
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 71) public IDOMDocument getTextRoot() { 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 |
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 86) public void map(XamlNode model, IDOMNode textNode) { 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/tools/ui/designer/editor/model/BuilderContext.java (at line 94) && !textNode.getAdapters().contains(nodeAdapter)) { Discouraged access: The method getAdapters() from the type INodeNotifier is 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 |
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 95) textNode.addAdapter(nodeAdapter); Discouraged access: The method addAdapter(INodeAdapter) from the type INodeNotifier is 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 |
17. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 100) IDOMNode removedText = model2text.remove(obj); 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/tools/ui/designer/editor/model/BuilderContext.java (at line 104) removedText.removeAdapter(nodeAdapter); Discouraged access: The method removeAdapter(INodeAdapter) from the type INodeNotifier is 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/tools/ui/designer/editor/model/BuilderContext.java (at line 125) public IDOMNode getTextNode(Object model) { 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 |
20. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 129) public List<IDOMElement> getChildNodes(IDOMNode parent) { Discouraged access: The type IDOMElement is 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 |
21. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 129) public List<IDOMElement> getChildNodes(IDOMNode parent) { 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 |
22. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 133) List<IDOMElement> childNodes = new ArrayList<IDOMElement>(); Discouraged access: The type IDOMElement is 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 |
23. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 133) List<IDOMElement> childNodes = new ArrayList<IDOMElement>(); Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/BuilderContext.java (at line 136) if (child instanceof IDOMElement Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/BuilderContext.java (at line 138) childNodes.add((IDOMElement) child); Discouraged access: The type IDOMElement is 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 |
26. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 145) public List<Text> getContentNodes(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 |
27. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 164) public String getContent(IDOMNode parent) { 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 |
28. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 190) public List<IDOMNode> getAttributes(IDOMNode parent) { 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 |
29. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 190) public List<IDOMNode> getAttributes(IDOMNode parent) { 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/tools/ui/designer/editor/model/BuilderContext.java (at line 194) List<IDOMNode> attributes = new ArrayList<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 |
31. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 194) List<IDOMNode> attributes = new ArrayList<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 |
32. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 199) IDOMAttr item = (IDOMAttr) attrMap.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 |
33. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 199) IDOMAttr item = (IDOMAttr) attrMap.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 |
34. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 220) if (item instanceof IDOMElement && localName.indexOf(".") != -1) { Discouraged access: The type IDOMElement is 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 |
35. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 221) attributes.add((IDOMElement) item); Discouraged access: The type IDOMElement is 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 |
36. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 277) public void setNodeAdapter(INodeAdapter nodeAdapter) { Discouraged access: The type INodeAdapter is 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 |
37. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/BuilderContext.java (at line 284) public INodeAdapter getNodeAdapter() { Discouraged access: The type INodeAdapter is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 30) 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 |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 31) 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 |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 32) import org.eclipse.wst.xml.core.internal.provisional.document.IDOMElement; Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 33) 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 85) IDOMNode textNode = fContext.getTextNode(notifier); 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 86) IDOMNode oldNode = fContext.getTextNode(oldValue); 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 87) IDOMNode newNode = fContext.getTextNode(newValue); 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 94) IDOMNode superParent = fContext.getTextNode(eContainer); 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 105) || (!(textNode instanceof IDOMElement) && !(textNode instanceof IDOMAttr))) { Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 105) || (!(textNode instanceof IDOMElement) && !(textNode instanceof 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 |
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 109) && textNode instanceof 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 |
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 116) ((IDOMAttr) textNode).setValue("{" + flatValue + "}"); 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 |
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 131) IDOMNode parentNode = textNode; 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 132) IDOMNode moveable = newNode; 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 137) List<IDOMElement> eles = fContext.getChildNodes(parentNode); Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 152) IDOMElement insert = eles.get(newIndex); Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 161) if (oldNode instanceof IDOMElement) { Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 172) } else if (textNode instanceof IDOMElement Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 173) && oldNode instanceof 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 |
20. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 175) ((IDOMElement) textNode) Discouraged access: The type IDOMElement is 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 |
21. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 208) protected void reverseAttr(IDOMNode parent, XamlAttribute model) { 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 |
22. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 209) IDOMDocument textDocument = fContext.getTextRoot(); 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 |
23. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 220) if (value != null && parent instanceof IDOMElement) { Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 221) IDOMAttr attr = (IDOMAttr) textDocument.createAttribute(name); 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 |
25. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 221) IDOMAttr attr = (IDOMAttr) textDocument.createAttribute(name); 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 |
26. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 224) ((IDOMElement) parent).setAttributeNode(attr); Discouraged access: The type IDOMElement is 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 |
27. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 236) parent = (IDOMElement) parent.getParentNode(); Discouraged access: The type IDOMElement is 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 |
28. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 244) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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 |
29. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 244) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 250) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 250) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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 |
32. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 261) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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 |
33. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 261) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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 |
34. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 269) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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 |
35. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 269) IDOMElement node = (IDOMElement) textDocument Discouraged access: The type IDOMElement is 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 |
36. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 278) IDOMDocument textDocument = fContext.getTextRoot(); 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 |
37. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 306) protected void reverseNode(IDOMNode parent, XamlElement element) { 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 |
38. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 308) IDOMDocument textDocument = fContext.getTextRoot(); 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 |
39. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 309) IDOMElement node = (IDOMElement) textDocument.createElement(name); Discouraged access: The type IDOMElement is 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 |
40. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 309) IDOMElement node = (IDOMElement) textDocument.createElement(name); Discouraged access: The type IDOMElement is 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 332) IDOMNode nextNode = fContext.getTextNode(next); 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/tools/ui/designer/editor/model/ModelAdapter.java (at line 344) protected void reverseContent(IDOMNode node, String value) { 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 |
43. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/ModelAdapter.java (at line 362) IDOMDocument textDocument = fContext.getTextRoot(); 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/model/TextNotification.java (at line 13) import org.eclipse.wst.sse.core.internal.provisional.INodeNotifier; Discouraged access: The type INodeNotifier is 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/tools/ui/designer/editor/model/TextNotification.java (at line 19) private INodeNotifier notifier; Discouraged access: The type INodeNotifier is 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/tools/ui/designer/editor/model/TextNotification.java (at line 26) public TextNotification(INodeNotifier notifier, int eventType, Discouraged access: The type INodeNotifier is 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/tools/ui/designer/editor/model/TextNotification.java (at line 40) public void setNotifier(INodeNotifier notifier) { Discouraged access: The type INodeNotifier is 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/tools/ui/designer/editor/model/TextNotification.java (at line 47) public INodeNotifier getNotifier() { Discouraged access: The type INodeNotifier is 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/tools/ui/designer/editor/source/XWTJavaEditor.java (at line 25) 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/tools/ui/designer/editor/source/XWTJavaEditor.java (at line 34) public class XWTJavaEditor extends CompilationUnitEditor implements ISourcePage { 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/editor/text/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/tools/ui/designer/editor/text/XWTStructuredTextViewerConfiguration.java (at line 34) 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/tools/ui/designer/editor/text/XWTStructuredTextViewerConfiguration.java (at line 34) 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/tools/ui/designer/jdt/ASTHelper.java (at line 44) import org.eclipse.jdt.internal.corext.codemanipulation.AddUnimplementedConstructorsOperation; Discouraged access: The type AddUnimplementedConstructorsOperation is 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/tools/ui/designer/jdt/ASTHelper.java (at line 45) import org.eclipse.jdt.internal.corext.codemanipulation.AddUnimplementedMethodsOperation; Discouraged access: The type AddUnimplementedMethodsOperation is 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/tools/ui/designer/jdt/ASTHelper.java (at line 46) import org.eclipse.jdt.internal.corext.codemanipulation.CodeGenerationSettings; Discouraged access: The type CodeGenerationSettings is 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/tools/ui/designer/jdt/ASTHelper.java (at line 47) 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 |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 48) 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 |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 49) 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 |
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 50) 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 |
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 51) 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 |
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 52) import org.eclipse.jdt.internal.ui.preferences.JavaPreferencesSettings; Discouraged access: The type JavaPreferencesSettings is 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/tools/ui/designer/jdt/ASTHelper.java (at line 65) String lineDelimiter = StubUtility.getLineDelimiterUsed(pack.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 |
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 65) String lineDelimiter = StubUtility.getLineDelimiterUsed(pack.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 |
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 86) imports.addImport(JavaModelUtil.concatenateName(pack.getElementName(), typeName)); 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 |
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 86) imports.addImport(JavaModelUtil.concatenateName(pack.getElementName(), typeName)); Discouraged access: The method concatenateName(String, String) 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 |
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 108) 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 |
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 108) 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 |
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 121) 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 |
17. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 121) 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 |
18. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 143) 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 |
19. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 143) 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 |
20. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 144) 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 |
21. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 144) 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 |
22. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 152) 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 |
23. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 152) 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 |
24. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 165) 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 |
25. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 165) 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 |
26. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 203) 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 |
27. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 203) 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 |
28. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 218) 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 |
29. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 218) 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 |
30. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 224) CodeGenerationSettings settings = JavaPreferencesSettings.getCodeGenerationSettings(type.getJavaProject()); Discouraged access: The type CodeGenerationSettings is 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/tools/ui/designer/jdt/ASTHelper.java (at line 224) CodeGenerationSettings settings = JavaPreferencesSettings.getCodeGenerationSettings(type.getJavaProject()); Discouraged access: The type JavaPreferencesSettings is 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/tools/ui/designer/jdt/ASTHelper.java (at line 224) CodeGenerationSettings settings = JavaPreferencesSettings.getCodeGenerationSettings(type.getJavaProject()); Discouraged access: The method getCodeGenerationSettings(IJavaProject) from the type JavaPreferencesSettings is 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/tools/ui/designer/jdt/ASTHelper.java (at line 225) settings.createComments = false; Discouraged access: The field createComments from the type CodeGenerationSettings is 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/tools/ui/designer/jdt/ASTHelper.java (at line 230) final ITypeBinding binding = ASTNodes.getTypeBinding(unit, type); 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 |
35. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 230) final ITypeBinding binding = ASTNodes.getTypeBinding(unit, type); Discouraged access: The method getTypeBinding(CompilationUnit, IType) 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 |
36. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 233) AddUnimplementedMethodsOperation operation = new AddUnimplementedMethodsOperation(unit, binding, null, -1, false, true, false); Discouraged access: The type AddUnimplementedMethodsOperation is 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/tools/ui/designer/jdt/ASTHelper.java (at line 233) AddUnimplementedMethodsOperation operation = new AddUnimplementedMethodsOperation(unit, binding, null, -1, false, true, false); Discouraged access: The constructor AddUnimplementedMethodsOperation(CompilationUnit, ITypeBinding, IMethodBinding[], int, boolean, boolean, boolean) is 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/tools/ui/designer/jdt/ASTHelper.java (at line 233) AddUnimplementedMethodsOperation operation = new AddUnimplementedMethodsOperation(unit, binding, null, -1, false, true, false); Discouraged access: The type AddUnimplementedMethodsOperation is 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 |
39. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 234) operation.setCreateComments(false); Discouraged access: The method setCreateComments(boolean) from the type AddUnimplementedMethodsOperation is 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 |
40. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 235) operation.run(null); Discouraged access: The method run(IProgressMonitor) from the type AddUnimplementedMethodsOperation is 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 |
41. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 236) createImports(imports, operation.getCreatedImports()); Discouraged access: The method getCreatedImports() from the type AddUnimplementedMethodsOperation is 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/tools/ui/designer/jdt/ASTHelper.java (at line 239) AddUnimplementedConstructorsOperation operation = new AddUnimplementedConstructorsOperation(unit, binding, null, -1, false, true, false); Discouraged access: The type AddUnimplementedConstructorsOperation is 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/tools/ui/designer/jdt/ASTHelper.java (at line 239) AddUnimplementedConstructorsOperation operation = new AddUnimplementedConstructorsOperation(unit, binding, null, -1, false, true, false); Discouraged access: The constructor AddUnimplementedConstructorsOperation(CompilationUnit, ITypeBinding, IMethodBinding[], int, boolean, boolean, boolean) is 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/tools/ui/designer/jdt/ASTHelper.java (at line 239) AddUnimplementedConstructorsOperation operation = new AddUnimplementedConstructorsOperation(unit, binding, null, -1, false, true, false); Discouraged access: The type AddUnimplementedConstructorsOperation is 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/tools/ui/designer/jdt/ASTHelper.java (at line 240) operation.setOmitSuper(true); Discouraged access: The method setOmitSuper(boolean) from the type AddUnimplementedConstructorsOperation is 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 |
46. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 241) operation.setCreateComments(false); Discouraged access: The method setCreateComments(boolean) from the type AddUnimplementedConstructorsOperation is 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 |
47. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 242) operation.run(null); Discouraged access: The method run(IProgressMonitor) from the type AddUnimplementedConstructorsOperation is 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 |
48. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 243) createImports(imports, operation.getCreatedImports()); Discouraged access: The method getCreatedImports() from the type AddUnimplementedConstructorsOperation is 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 |
49. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 246) 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 |
50. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 246) 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 |
51. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 287) 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 |
52. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 287) 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 |
53. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 301) 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 |
54. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 301) 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 |
55. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 325) 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 |
56. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 325) 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 |
57. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 535) 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 |
58. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 535) 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 |
59. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 554) 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 |
60. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 554) 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 |
61. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 561) 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 |
62. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 561) 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 |
63. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 562) 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 |
64. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 562) 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 |
65. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 588) 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 |
66. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 588) 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 |
67. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 606) 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 |
68. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 606) 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 |
69. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 613) 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 |
70. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 613) 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 |
71. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 614) 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 |
72. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 614) 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 |
73. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 691) 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 |
74. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ASTHelper.java (at line 691) 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 |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 32) import org.eclipse.osgi.framework.adaptor.BundleData; Discouraged access: The type BundleData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 33) import org.eclipse.osgi.framework.internal.core.BundleFragment; Discouraged access: The type BundleFragment is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 34) import org.eclipse.osgi.framework.internal.core.BundleHost; Discouraged access: The type BundleHost is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 38) import org.eclipse.pde.internal.core.ICoreConstants; Discouraged access: The type ICoreConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 39) import org.eclipse.pde.internal.core.bundle.WorkspaceBundleFragmentModel; Discouraged access: The type WorkspaceBundleFragmentModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
6. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 40) import org.eclipse.pde.internal.core.bundle.WorkspaceBundlePluginModel; Discouraged access: The type WorkspaceBundlePluginModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 41) import org.eclipse.pde.internal.core.bundle.WorkspaceBundlePluginModelBase; Discouraged access: The type WorkspaceBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 57) BundleData bundleData = null; Discouraged access: The type BundleData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
9. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 59) if (bundle instanceof BundleHost) { Discouraged access: The type BundleHost is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
10. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 60) bundleData = ((BundleHost) bundle).getBundleData(); Discouraged access: The method getBundleData() from the type AbstractBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
11. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 60) bundleData = ((BundleHost) bundle).getBundleData(); Discouraged access: The type BundleHost is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
12. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 61) } else if (bundle instanceof BundleFragment) { Discouraged access: The type BundleFragment is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
13. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 62) bundleData = ((BundleFragment) bundle).getBundleData(); Discouraged access: The method getBundleData() from the type AbstractBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
14. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 62) bundleData = ((BundleFragment) bundle).getBundleData(); Discouraged access: The type BundleFragment is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.osgi_3.7.0.v20110124-0830.jar |
15. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 100) IFile file = project.getFile(ICoreConstants.BUNDLE_FILENAME_DESCRIPTOR); Discouraged access: The type ICoreConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
16. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 100) IFile file = project.getFile(ICoreConstants.BUNDLE_FILENAME_DESCRIPTOR); Discouraged access: The field BUNDLE_FILENAME_DESCRIPTOR from the type ICoreConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
17. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 103) WorkspaceBundlePluginModelBase fModel = null; Discouraged access: The type WorkspaceBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
18. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 104) IFile fragmentFile = project.getFile(ICoreConstants.FRAGMENT_FILENAME_DESCRIPTOR); Discouraged access: The type ICoreConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
19. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 104) IFile fragmentFile = project.getFile(ICoreConstants.FRAGMENT_FILENAME_DESCRIPTOR); Discouraged access: The field FRAGMENT_FILENAME_DESCRIPTOR from the type ICoreConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
20. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 105) IFile pluginFile = project.getFile(ICoreConstants.PLUGIN_FILENAME_DESCRIPTOR); Discouraged access: The type ICoreConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
21. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 105) IFile pluginFile = project.getFile(ICoreConstants.PLUGIN_FILENAME_DESCRIPTOR); Discouraged access: The field PLUGIN_FILENAME_DESCRIPTOR from the type ICoreConstants is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
22. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 107) fModel = new WorkspaceBundleFragmentModel(file, fragmentFile); Discouraged access: The constructor WorkspaceBundleFragmentModel(IFile, IFile) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
23. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 107) fModel = new WorkspaceBundleFragmentModel(file, fragmentFile); Discouraged access: The type WorkspaceBundleFragmentModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
24. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 109) fModel = new WorkspaceBundlePluginModel(file, pluginFile); Discouraged access: The constructor WorkspaceBundlePluginModel(IFile, IFile) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
25. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 109) fModel = new WorkspaceBundlePluginModel(file, pluginFile); Discouraged access: The type WorkspaceBundlePluginModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
26. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 111) IPluginBase pluginBase = fModel.getPluginBase(); Discouraged access: The method getPluginBase() from the type AbstractPluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
27. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 116) IPluginImport iimport = fModel.getPluginFactory().createImport(); Discouraged access: The method getPluginFactory() from the type AbstractPluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
28. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/jdt/ProjectHelper.java (at line 122) fModel.save(); Discouraged access: The method save() from the type WorkspaceBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20110118/plugins/org.eclipse.pde.core_3.7.0.v20110124-1800.jar |
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 14) import org.eclipse.jdt.internal.ui.JavaUIMessages; Discouraged access: The type JavaUIMessages is 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/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 15) import org.eclipse.jdt.internal.ui.dialogs.OpenTypeSelectionDialog; Discouraged access: The type OpenTypeSelectionDialog is 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/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 37) SelectionDialog dialog = new OpenTypeSelectionDialog(cellEditorWindow.getShell(), false, PlatformUI.getWorkbench().getProgressService(), null, IJavaSearchConstants.TYPE); Discouraged access: The constructor OpenTypeSelectionDialog(Shell, boolean, IRunnableContext, IJavaSearchScope, int) is 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/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 37) SelectionDialog dialog = new OpenTypeSelectionDialog(cellEditorWindow.getShell(), false, PlatformUI.getWorkbench().getProgressService(), null, IJavaSearchConstants.TYPE); Discouraged access: The type OpenTypeSelectionDialog is 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/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 38) dialog.setTitle(JavaUIMessages.OpenTypeAction_dialogTitle); Discouraged access: The type JavaUIMessages is 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/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 38) dialog.setTitle(JavaUIMessages.OpenTypeAction_dialogTitle); Discouraged access: The field OpenTypeAction_dialogTitle from the type JavaUIMessages is 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/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 39) dialog.setMessage(JavaUIMessages.OpenTypeAction_dialogMessage); Discouraged access: The type JavaUIMessages is 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/tools/ui/designer/properties/editors/ObjectCellEditor.java (at line 39) dialog.setMessage(JavaUIMessages.OpenTypeAction_dialogMessage); Discouraged access: The field OpenTypeAction_dialogMessage from the type JavaUIMessages is 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 |