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

TOTAL : ERRORS: 0, WARNINGS: 246

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/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/views/XWTView.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/views/XWTView.java
 (at line 21)
import org.eclipse.e4.xwt.core.IUserDataConstants;
The import org.eclipse.e4.xwt.core.IUserDataConstants is never used

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 57)
import org.eclipse.jface.viewers.TableViewer;
The import org.eclipse.jface.viewers.TableViewer is never used
2. 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
3. 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
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 270)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.osgi_3.6.0.v20091005.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.pde.core_3.5.100.v200910060600.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 20)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 21)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 24)
public class NewE4DynamicPartWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 29)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 29)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 35)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 35)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 42)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 47)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 48)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 59)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4DynamicPartWizard.java
 (at line 61)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 20)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 21)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 24)
public class NewE4StaticPartWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 29)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 29)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 35)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 35)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 42)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 47)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 48)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 59)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 63)
selectAndReveal(guiResource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 64)
openResource((IFile) guiResource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewE4StaticPartWizard.java
 (at line 66)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 20)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 21)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 24)
public class NewPresentationWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 29)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 29)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 35)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 35)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 42)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 47)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 48)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 59)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 63)
selectAndReveal(guiResource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 64)
openResource((IFile) guiResource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizard.java
 (at line 66)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 47)
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 48)
import org.eclipse.jdt.internal.ui.dialogs.FilteredTypesSelectionDialog;
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 49)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 50)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.DialogField;
Discouraged access: The type DialogField is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 51)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.IDialogFieldListener;
Discouraged access: The type IDialogFieldListener is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 52)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.IStringButtonAdapter;
Discouraged access: The type IStringButtonAdapter is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 53)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.LayoutUtil;
Discouraged access: The type LayoutUtil is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewPresentationWizardPage.java
 (at line 54)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.StringButtonDialogField;
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 20)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
2. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 21)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
3. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 22)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
4. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 24)
public class NewUIElementWizard extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
5. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 29)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
6. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 29)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
7. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
8. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 30)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
9. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 35)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
10. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 35)
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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
11. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
12. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 36)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
13. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 42)
fPage.init(getSelection());
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
14. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 47)
warnAboutTypeCommentDeprecation();
Discouraged access: The method warnAboutTypeCommentDeprecation() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
15. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 48)
boolean res = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
16. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 59)
selectAndReveal(resource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
17. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 63)
selectAndReveal(guiResource);
Discouraged access: The method selectAndReveal(IResource) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
18. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 64)
openResource((IFile) guiResource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar
19. WARNING in /src/org/eclipse/e4/xwt/ui/wizards/NewUIElementWizard.java
 (at line 66)
openResource((IFile) resource);
Discouraged access: The method openResource(IFile) from the type NewElementWizard is not accessible due to restriction on classpath entry /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.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 /shared/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/helios-p2/plugins/org.eclipse.jdt.ui_3.6.0.v20091006-0800.jar