Compiler log for org.eclipse.e4.xwt.tools.ui_0.9.0.v20100617-2100 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 359

errors others warnings forbidden warnings discouraged warnings

ERRORS

top others warnings forbidden warnings discouraged warnings

OTHER WARNINGS

top errors forbidden warnings discouraged warnings

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 80)
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/ui/jdt/ASTHelper.java
 (at line 153)
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/ui/jdt/ASTHelper.java
 (at line 212)
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/ui/jdt/ASTHelper.java
 (at line 212)
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/ui/jdt/ASTHelper.java
 (at line 214)
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/ui/jdt/ASTHelper.java
 (at line 253)
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
7. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 263)
List importsDecls = root.imports();
List is a raw type. References to generic type List<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 303)
private static Set /* String */getExistingImports(CompilationUnit root) {
Set is a raw type. References to generic type Set<E> should be parameterized
9. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 304)
List imports = root.imports();
List is a raw type. References to generic type List<E> should be parameterized
10. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 305)
Set res = new HashSet(imports.size());
Set is a raw type. References to generic type Set<E> should be parameterized
11. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 305)
Set res = new HashSet(imports.size());
HashSet is a raw type. References to generic type HashSet<E> should be parameterized
12. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 307)
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

/src/org/eclipse/e4/xwt/ui/jdt/ProjectHelper.java : 31 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ProjectHelper.java
 (at line 113)
for (IPluginImport pluginImport : imports) {
The local variable pluginImport is never read
2. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ProjectHelper.java
 (at line 171)
IClasspathEntry resolvedEntry = JavaCore.getJavaCore().getResolvedClasspathEntry(entry);
The static method getResolvedClasspathEntry(IClasspathEntry) from the type JavaCore should be accessed in a static way
3. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ProjectHelper.java
 (at line 181)
IClasspathContainer classpathContainer = JavaCore.getJavaCore().getClasspathContainer(path, javaProject);
The static method getClasspathContainer(IPath, IJavaProject) from the type JavaCore should be accessed in a static way

/src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java : 72 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 40)
import org.eclipse.pde.internal.core.util.VersionUtil;
The import org.eclipse.pde.internal.core.util.VersionUtil is never used
2. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 102)
for (Iterator iterator = pluginImports.iterator(); iterator.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/xwt/ui/utils/ImageManager.java : 7 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/utils/ImageManager.java
 (at line 32)
private static final String T_OVR = "ovr16"; //$NON-NLS-1$
The field ImageManager.T_OVR is never read locally
2. WARNING in /src/org/eclipse/e4/xwt/ui/utils/ImageManager.java
 (at line 33)
private static final String T_WIZBAN = "wizban"; //$NON-NLS-1$
The field ImageManager.T_WIZBAN is never read locally
3. WARNING in /src/org/eclipse/e4/xwt/ui/utils/ImageManager.java
 (at line 34)
private static final String T_ELCL = "elcl16"; //$NON-NLS-1$
The field ImageManager.T_ELCL is never read locally
4. WARNING in /src/org/eclipse/e4/xwt/ui/utils/ImageManager.java
 (at line 35)
private static final String T_DLCL = "dlcl16"; //$NON-NLS-1$
The field ImageManager.T_DLCL is never read locally
5. WARNING in /src/org/eclipse/e4/xwt/ui/utils/ImageManager.java
 (at line 36)
private static final String T_ETOOL = "etool16"; //$NON-NLS-1$
The field ImageManager.T_ETOOL is never read locally
6. WARNING in /src/org/eclipse/e4/xwt/ui/utils/ImageManager.java
 (at line 37)
private static final String T_EVIEW = "eview16"; //$NON-NLS-1$
The field ImageManager.T_EVIEW is never read locally
7. WARNING in /src/org/eclipse/e4/xwt/ui/utils/ImageManager.java
 (at line 94)
private static ImageDescriptor createUnManaged(String prefix, String name) {
The method createUnManaged(String, String) from the type ImageManager is never used locally

/src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java : 40 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 168)
ArrayList tokens = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 168)
ArrayList tokens = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 172)
tokens.add(entries[i].getPath().removeFirstSegments(1).addTrailingSeparator().toString());
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 192)
ArrayList toBeAdded = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 192)
ArrayList toBeAdded = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 206)
toBeAdded.add(entries[i]);
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 217)
toBeAdded.add(index++, entry);
Type safety: The method add(int, Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 223)
IClasspathEntry[] updated = (IClasspathEntry[]) toBeAdded.toArray(new IClasspathEntry[toBeAdded.size()]);
Type safety: The method toArray(Object[]) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized

/src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java : 22 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 26)
import org.eclipse.jface.viewers.IStructuredSelection;
The import org.eclipse.jface.viewers.IStructuredSelection is never used
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 27)
import org.eclipse.ui.IWorkbench;
The import org.eclipse.ui.IWorkbench is never used

/src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java : 40 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 79)
private IPackageFragment packageFragment;
The field NewPresentationWizardPage.packageFragment is never read locally
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 135)
for (Iterator iterator = selection.iterator(); iterator.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 272)
public List getSuperInterfaces() {
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java : 19 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 18)
import java.util.Iterator;
The import java.util.Iterator is never used
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 30)
import org.eclipse.jdt.core.ICompilationUnit;
The import org.eclipse.jdt.core.ICompilationUnit is never used
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 32)
import org.eclipse.jdt.core.IJavaProject;
The import org.eclipse.jdt.core.IJavaProject is never used
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 34)
import org.eclipse.jdt.core.search.IJavaSearchConstants;
The import org.eclipse.jdt.core.search.IJavaSearchConstants is never used
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 35)
import org.eclipse.jdt.core.search.IJavaSearchScope;
The import org.eclipse.jdt.core.search.IJavaSearchScope is never used
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 36)
import org.eclipse.jdt.core.search.SearchEngine;
The import org.eclipse.jdt.core.search.SearchEngine is never used
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 38)
import org.eclipse.jdt.internal.ui.dialogs.FilteredTypesSelectionDialog;
The import org.eclipse.jdt.internal.ui.dialogs.FilteredTypesSelectionDialog is never used
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 39)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
The import org.eclipse.jdt.internal.ui.wizards.NewElementWizard is never used
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 40)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.StringButtonDialogField;
The import org.eclipse.jdt.internal.ui.wizards.dialogfields.StringButtonDialogField is never used
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 43)
import org.eclipse.jface.viewers.IStructuredSelection;
The import org.eclipse.jface.viewers.IStructuredSelection is never used
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 44)
import org.eclipse.jface.viewers.TableViewer;
The import org.eclipse.jface.viewers.TableViewer is never used
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 45)
import org.eclipse.jface.window.Window;
The import org.eclipse.jface.window.Window is never used
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 132)
public List getSuperInterfaces() {
List is a raw type. References to generic type List<E> should be parameterized

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 40)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 41)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 42)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 43)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 44)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 45)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 46)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 47)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 48)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 64)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 64)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 85)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 85)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 107)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 107)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 120)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 120)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 141)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 141)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 142)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 142)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 150)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 150)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 163)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 163)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 195)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 195)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 210)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 210)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
30. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 216)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
31. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 216)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
32. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 216)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
33. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 217)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
34. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 222)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
35. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 222)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
36. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 225)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
37. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 225)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
38. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 225)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
39. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 226)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
40. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 227)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
41. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 228)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
42. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 231)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
43. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 231)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
44. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 231)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
45. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 232)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
46. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 233)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
47. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 234)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
48. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 235)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
49. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 238)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
50. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 238)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
51. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 269)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
52. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 269)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
53. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 283)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
54. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 283)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
55. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 307)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
56. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 307)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
57. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 478)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
58. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ASTHelper.java
 (at line 478)
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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar

/src/org/eclipse/e4/xwt/ui/jdt/ProjectHelper.java : 31 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ProjectHelper.java
 (at line 122)
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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/jdt/ProjectHelper.java
 (at line 128)
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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar

/src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java : 72 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 30)
import org.eclipse.pde.internal.core.bundle.BundlePluginBase;
Discouraged access: The type BundlePluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 31)
import org.eclipse.pde.internal.core.bundle.BundlePluginModelBase;
Discouraged access: The type BundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 32)
import org.eclipse.pde.internal.core.bundle.WorkspaceBundleModel;
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 33)
import org.eclipse.pde.internal.core.ibundle.IBundle;
Discouraged access: The type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 34)
import org.eclipse.pde.internal.core.ibundle.IBundlePluginModelBase;
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 35)
import org.eclipse.pde.internal.core.plugin.AbstractPluginModelBase;
Discouraged access: The type AbstractPluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 36)
import org.eclipse.pde.internal.core.plugin.PluginBase;
Discouraged access: The type PluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 37)
import org.eclipse.pde.internal.core.plugin.WorkspaceExtensionsModel;
Discouraged access: The type WorkspaceExtensionsModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 38)
import org.eclipse.pde.internal.core.text.plugin.PluginBaseNode;
Discouraged access: The type PluginBaseNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 39)
import org.eclipse.pde.internal.core.text.plugin.PluginDocumentNodeFactory;
Discouraged access: The type PluginDocumentNodeFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 40)
import org.eclipse.pde.internal.core.util.VersionUtil;
Discouraged access: The type VersionUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 113)
IBundlePluginModelBase model = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 113)
IBundlePluginModelBase model = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 122)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 122)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 122)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The method getBundleModel() from the type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 124)
bundleModel.load();
Discouraged access: The method load() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 125)
boolean isBundleEditable = bundleModel.isEditable();
Discouraged access: The method isEditable() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 127)
bundleModel.setEditable(true);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 129)
ISharedExtensionsModel extensionsModel = model.getExtensionsModel();
Discouraged access: The method getExtensionsModel() from the type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 130)
if (extensionsModel != null && extensionsModel instanceof WorkspaceExtensionsModel){
Discouraged access: The type WorkspaceExtensionsModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 131)
((WorkspaceExtensionsModel)extensionsModel).setEditable(true);
Discouraged access: The method setEditable(boolean) from the type WorkspaceExtensionsModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 131)
((WorkspaceExtensionsModel)extensionsModel).setEditable(true);
Discouraged access: The type WorkspaceExtensionsModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 144)
bundleModel.save();
Discouraged access: The method save() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 146)
bundleModel.setEditable(false);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 148)
if (extensionsModel != null && extensionsModel instanceof WorkspaceExtensionsModel){
Discouraged access: The type WorkspaceExtensionsModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 149)
((WorkspaceExtensionsModel)extensionsModel).setEditable(false);
Discouraged access: The method setEditable(boolean) from the type WorkspaceExtensionsModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 149)
((WorkspaceExtensionsModel)extensionsModel).setEditable(false);
Discouraged access: The type WorkspaceExtensionsModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 160)
if (factory instanceof AbstractPluginModelBase) {
Discouraged access: The type AbstractPluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
30. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 161)
return ((AbstractPluginModelBase) factory).createImport(id);
Discouraged access: The method createImport(String) 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/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
31. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 161)
return ((AbstractPluginModelBase) factory).createImport(id);
Discouraged access: The type AbstractPluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
32. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 162)
} else if (factory instanceof BundlePluginModelBase) {
Discouraged access: The type BundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
33. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 163)
return ((BundlePluginModelBase) factory).createImport(id);
Discouraged access: The method createImport(String) from the type BundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
34. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 163)
return ((BundlePluginModelBase) factory).createImport(id);
Discouraged access: The type BundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
35. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 164)
} else if (factory instanceof PluginDocumentNodeFactory) {
Discouraged access: The type PluginDocumentNodeFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
36. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 165)
return ((PluginDocumentNodeFactory) factory).createImport(id);
Discouraged access: The method createImport(String) from the type PluginDocumentNodeFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
37. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 165)
return ((PluginDocumentNodeFactory) factory).createImport(id);
Discouraged access: The type PluginDocumentNodeFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
38. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 171)
if (base instanceof BundlePluginBase) {
Discouraged access: The type BundlePluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
39. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 172)
((BundlePluginBase) base).add(imports);
Discouraged access: The method add(IPluginImport[]) from the type BundlePluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
40. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 172)
((BundlePluginBase) base).add(imports);
Discouraged access: The type BundlePluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
41. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 173)
} else if (base instanceof PluginBase) {
Discouraged access: The type PluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
42. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 174)
((PluginBase) base).add(imports);
Discouraged access: The method add(IPluginImport[]) from the type PluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
43. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 174)
((PluginBase) base).add(imports);
Discouraged access: The type PluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
44. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 175)
} else if (base instanceof PluginBaseNode) {
Discouraged access: The type PluginBaseNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
45. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 176)
((PluginBaseNode) base).add(imports);
Discouraged access: The method add(IPluginImport[]) from the type PluginBaseNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
46. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 176)
((PluginBaseNode) base).add(imports);
Discouraged access: The type PluginBaseNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
47. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 186)
IBundlePluginModelBase model = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
48. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 186)
IBundlePluginModelBase model = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
49. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 201)
IBundle bundle = model.getBundleModel().getBundle();
Discouraged access: The type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
50. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 201)
IBundle bundle = model.getBundleModel().getBundle();
Discouraged access: The method getBundleModel() from the type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
51. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 201)
IBundle bundle = model.getBundleModel().getBundle();
Discouraged access: The method getBundle() from the type IBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
52. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 202)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
53. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 202)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
54. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 202)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The method getBundleModel() from the type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
55. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 204)
bundleModel.load();
Discouraged access: The method load() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
56. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 205)
bundleModel.setEditable(true);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
57. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 208)
bundleModel.save();
Discouraged access: The method save() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
58. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 209)
bundleModel.setEditable(false);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
59. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 219)
if (base instanceof BundlePluginBase)
Discouraged access: The type BundlePluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
60. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 220)
((BundlePluginBase) base).remove(imports);
Discouraged access: The method remove(IPluginImport[]) from the type BundlePluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
61. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 220)
((BundlePluginBase) base).remove(imports);
Discouraged access: The type BundlePluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
62. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 221)
else if (base instanceof PluginBase)
Discouraged access: The type PluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
63. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 222)
((PluginBase) base).remove(imports);
Discouraged access: The method remove(IPluginImport[]) from the type PluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
64. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 222)
((PluginBase) base).remove(imports);
Discouraged access: The type PluginBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
65. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 223)
else if (base instanceof PluginBaseNode)
Discouraged access: The type PluginBaseNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
66. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 224)
((PluginBaseNode) base).remove(imports);
Discouraged access: The method remove(IPluginImport[]) from the type PluginBaseNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
67. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 224)
((PluginBaseNode) base).remove(imports);
Discouraged access: The type PluginBaseNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
68. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 230)
private void removeDependencies(IBundle bundle, IPluginImport[] imports) {
Discouraged access: The type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
69. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 231)
String oldValue = bundle.getHeader(Constants.REQUIRE_BUNDLE);
Discouraged access: The method getHeader(String) from the type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
70. WARNING in /src/org/eclipse/e4/xwt/ui/utils/DependencyBuilder.java
 (at line 257)
bundle.setHeader(Constants.REQUIRE_BUNDLE, newValue);
Discouraged access: The method setHeader(String, String) from the type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar

/src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java : 40 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 33)
import org.eclipse.pde.internal.core.bundle.WorkspaceBundleModel;
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 34)
import org.eclipse.pde.internal.core.ibundle.IBundle;
Discouraged access: The type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 35)
import org.eclipse.pde.internal.core.ibundle.IBundlePluginModelBase;
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 56)
IBundlePluginModelBase model = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 56)
IBundlePluginModelBase model = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 58)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 58)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 58)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The method getBundleModel() from the type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 60)
bundleModel.load();
Discouraged access: The method load() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 61)
boolean isNonEdit = bundleModel.isEditable();
Discouraged access: The method isEditable() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 63)
bundleModel.setEditable(true);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 75)
bundleModel.save();
Discouraged access: The method save() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 77)
bundleModel.setEditable(false);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 88)
IBundlePluginModelBase pluginModel = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 88)
IBundlePluginModelBase pluginModel = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 111)
IBundlePluginModelBase pluginModel = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 111)
IBundlePluginModelBase pluginModel = (IBundlePluginModelBase) getModel();
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 234)
IBundlePluginModelBase model = (IBundlePluginModelBase) pluginModel;
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 234)
IBundlePluginModelBase model = (IBundlePluginModelBase) pluginModel;
Discouraged access: The type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 251)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 251)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 251)
WorkspaceBundleModel bundleModel = (WorkspaceBundleModel) model.getBundleModel();
Discouraged access: The method getBundleModel() from the type IBundlePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 253)
bundleModel.load();
Discouraged access: The method load() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 254)
boolean isNonEdit = bundleModel.isEditable();
Discouraged access: The method isEditable() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 256)
bundleModel.setEditable(true);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 260)
IBundle bundle = bundleModel.getBundle();
Discouraged access: The type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 260)
IBundle bundle = bundleModel.getBundle();
Discouraged access: The method getBundle() from the type BundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 267)
bundleModel.save();
Discouraged access: The method save() from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 269)
bundleModel.setEditable(false);
Discouraged access: The method setEditable(boolean) from the type WorkspaceBundleModel is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
30. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 284)
private void removeLibraries(IBundle bundle, String[] remove) {
Discouraged access: The type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
31. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 285)
String oldValue = bundle.getHeader(Constants.BUNDLE_CLASSPATH);
Discouraged access: The method getHeader(String) from the type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar
32. WARNING in /src/org/eclipse/e4/xwt/ui/utils/LibraryBuilder.java
 (at line 305)
bundle.setHeader(Constants.BUNDLE_CLASSPATH, newValue);
Discouraged access: The method setHeader(String, String) from the type IBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.pde.core_3.6.0.v20100601.jar

/src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java : 17 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 21)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 23)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 25)
public class NewE4DynamicPartWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 30)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 30)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 31)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 31)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 36)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 36)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 37)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 37)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 43)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 48)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 49)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 61)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 63)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar

/src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizardPage.java : 3 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizardPage.java
 (at line 14)
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizardPage.java
 (at line 73)
IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizardPage.java
 (at line 73)
IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The field NEW_CLASS_WIZARD_PAGE from the type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar

/src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java : 19 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 21)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 23)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 25)
public class NewE4StaticPartWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 30)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 30)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 31)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 31)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 36)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 36)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 37)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 37)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 43)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 48)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 49)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 61)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 65)
selectAndReveal(guiResource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 66)
openResource((IFile) guiResource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 68)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar

/src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java : 22 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 23)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 24)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 29)
public class NewPresentationWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 34)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 34)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 35)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 35)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 40)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 40)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 41)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 41)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 46)
Object element = getSelection().getFirstElement();
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 58)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 64)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 65)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 77)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 81)
selectAndReveal(guiResource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 82)
openResource((IFile) guiResource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 84)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar

/src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java : 40 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 48)
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 49)
import org.eclipse.jdt.internal.ui.dialogs.FilteredTypesSelectionDialog;
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 50)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 51)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.DialogField;
Discouraged access: The type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 52)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.IDialogFieldListener;
Discouraged access: The type IDialogFieldListener is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 53)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.IStringButtonAdapter;
Discouraged access: The type IStringButtonAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 54)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.LayoutUtil;
Discouraged access: The type LayoutUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 55)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.StringButtonDialogField;
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 76)
private StringButtonDialogField fieldEditor;
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 132)
NewElementWizard wizard = (NewElementWizard) getWizard();
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 132)
NewElementWizard wizard = (NewElementWizard) getWizard();
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 133)
IStructuredSelection selection = (IStructuredSelection) wizard.getSelection();
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 150)
fieldEditor.setText(dataContextType.getFullyQualifiedName('.'));
Discouraged access: The method setText(String) from the type StringDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 155)
PlatformUI.getWorkbench().getHelpSystem().setHelp(composite, IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 155)
PlatformUI.getWorkbench().getHelpSystem().setHelp(composite, IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The field NEW_CLASS_WIZARD_PAGE from the type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 164)
fieldEditor = new StringButtonDialogField(adapter);
Discouraged access: The constructor StringButtonDialogField(IStringButtonAdapter) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 164)
fieldEditor = new StringButtonDialogField(adapter);
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 165)
fieldEditor.setDialogFieldListener(adapter);
Discouraged access: The method setDialogFieldListener(IDialogFieldListener) from the type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 166)
fieldEditor.setButtonLabel("Browse...");
Discouraged access: The method setButtonLabel(String) from the type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
20. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 167)
fieldEditor.setLabelText("Data Context Type:");
Discouraged access: The method setLabelText(String) from the type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
21. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 168)
fieldEditor.doFillIntoGrid(composite, 4);
Discouraged access: The method doFillIntoGrid(Composite, int) from the type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
22. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 169)
LayoutUtil.setWidthHint(fieldEditor.getTextControl(null), getMaxFieldWidth());
Discouraged access: The type LayoutUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
23. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 169)
LayoutUtil.setWidthHint(fieldEditor.getTextControl(null), getMaxFieldWidth());
Discouraged access: The method setWidthHint(Control, int) from the type LayoutUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
24. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 169)
LayoutUtil.setWidthHint(fieldEditor.getTextControl(null), getMaxFieldWidth());
Discouraged access: The method getTextControl(Composite) from the type StringDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
25. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 172)
private class DataContextFieldAdapter implements IStringButtonAdapter, IDialogFieldListener {
Discouraged access: The type IStringButtonAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
26. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 172)
private class DataContextFieldAdapter implements IStringButtonAdapter, IDialogFieldListener {
Discouraged access: The type IDialogFieldListener is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
27. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 175)
public void changeControlPressed(DialogField field) {
Discouraged access: The type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
28. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 178)
((StringButtonDialogField) field).setText(type.getFullyQualifiedName());
Discouraged access: The method setText(String) from the type StringDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
29. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 178)
((StringButtonDialogField) field).setText(type.getFullyQualifiedName());
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
30. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 183)
public void dialogFieldChanged(DialogField field) {
Discouraged access: The type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
31. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 184)
dataContext = ((StringButtonDialogField) field).getText();
Discouraged access: The method getText() from the type StringDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
32. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 184)
dataContext = ((StringButtonDialogField) field).getText();
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
33. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 232)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog(getShell(), false, getWizard().getContainer(), scope, IJavaSearchConstants.CLASS);
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
34. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 232)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog(getShell(), false, getWizard().getContainer(), scope, IJavaSearchConstants.CLASS);
Discouraged access: The constructor FilteredTypesSelectionDialog(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/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
35. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 232)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog(getShell(), false, getWizard().getContainer(), scope, IJavaSearchConstants.CLASS);
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
36. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 233)
dialog.setTitle("Choose a JavaBean");
Discouraged access: The method setTitle(String) from the type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
37. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 237)
if (dialog.open() == Window.OK) {
Discouraged access: The method open() from the type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar

/src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java : 19 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 21)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 23)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 25)
public class NewUIElementWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 30)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 30)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 31)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 31)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 36)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 36)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 37)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 37)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 43)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 48)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 49)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 61)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 65)
selectAndReveal(guiResource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 66)
openResource((IFile) guiResource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 68)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar

/src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java : 19 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 37)
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 38)
import org.eclipse.jdt.internal.ui.dialogs.FilteredTypesSelectionDialog;
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 39)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 40)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.StringButtonDialogField;
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 92)
IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizardPage.java
 (at line 92)
IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The field NEW_CLASS_WIZARD_PAGE from the type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100617/plugins/org.eclipse.jdt.ui_3.6.0.v20100602-1600.jar