Compiler log for org.eclipse.e4.tools.ui.designer_0.9.0.v20100114-2100 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 162

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/tools/ui/designer/E4DesignerOutlineContentProvider.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4DesignerOutlineContentProvider.java
 (at line 15)
List<EditPart> list = editPart.getChildren();
Type safety: The expression of type List needs unchecked conversion to conform to List<EditPart>

/src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java : 11 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 36)
private ReflectionContributionFactory contributionFactory;
The field E4ReflectionContributionFactory.contributionFactory is never read locally

/src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java
 (at line 42)
EList<MUIElement> children = (EList<MUIElement>) parent.getChildren();
Type safety: Unchecked cast from EList<capture#6-of ?> to EList<MUIElement>

/src/org/eclipse/e4/tools/ui/designer/commands/ChangeParentCommand.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ChangeParentCommand.java
 (at line 59)
EList<MUIElement> children = (EList<MUIElement>) oldParent .getChildren();
Type safety: Unchecked cast from EList<capture#8-of ?> to EList<MUIElement>

/src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 32)
private boolean after;
The field CreateCommand.after is never read locally
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 54)
if (model instanceof MElementContainer) {
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 55)
parentModel = (MElementContainer<MUIElement>) model;
Type safety: Unchecked cast from Object to MElementContainer<MUIElement>

/src/org/eclipse/e4/tools/ui/designer/editparts/DiagramEditPart.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/DiagramEditPart.java
 (at line 44)
protected List getModelChildren() {
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java : 6 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 42)
protected List getModelChildren() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 45)
List modelChildren = new ArrayList();
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 45)
List modelChildren = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 49)
modelChildren.add(item);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 74)
List children = getChildren();
List is a raw type. References to generic type List<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 85)
List children = getHeaderParts();
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/editparts/ShellEditPart.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/ShellEditPart.java
 (at line 33)
protected List getModelChildren() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/ShellEditPart.java
 (at line 34)
List modelChildren = new ArrayList(super.getModelChildren());
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/ShellEditPart.java
 (at line 34)
List modelChildren = new ArrayList(super.getModelChildren());
Type safety: The constructor ArrayList(Collection) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/ShellEditPart.java
 (at line 34)
List modelChildren = new ArrayList(super.getModelChildren());
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/ShellEditPart.java
 (at line 37)
modelChildren.add(((MWindow) model).getMainMenu());
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java : 7 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 65)
protected List getModelChildren() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 66)
List children = new ArrayList();
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 66)
List children = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 69)
for (Object object : ((MElementContainer) muiElement).getChildren()) {
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 74)
children.add(object);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 90)
List editParts = deleteRequest.getEditParts();
List is a raw type. References to generic type List<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 92)
for (Iterator iterator = editParts.iterator(); iterator
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/palette/E4PaletteHelper.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/palette/E4PaletteHelper.java
 (at line 28)
public static MUIElement createElement(MElementContainer container,
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/palette/E4PaletteHelper.java
 (at line 40)
private static MUIElement verify(MElementContainer container,
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/palette/E4PaletteHelper.java
 (at line 52)
public static MUIElement createElement(MElementContainer container,
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/palette/E4PaletteHelper.java
 (at line 61)
public static MUIElement createElement(MElementContainer container,
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/part/PartReqHelper.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/part/PartReqHelper.java
 (at line 23)
host.getExtendedData().put(WRAPPER_DATA, partReq);
Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/properties/E4PropertySource.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/properties/E4PropertySource.java
 (at line 38)
private VisualEditPart editPart;
The field E4PropertySource.editPart is never read locally

/src/org/eclipse/e4/tools/ui/designer/sashform/SashFormEditPart.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormEditPart.java
 (at line 56)
protected List getModelChildren() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormEditPart.java
 (at line 57)
List children = super.getModelChildren();
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormEditPart.java
 (at line 64)
children.add(i, control);
Type safety: The method add(int, Object) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/sashform/SashFormInsertCreateCommand.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormInsertCreateCommand.java
 (at line 54)
if (model instanceof MGenericTile) {
MGenericTile is a raw type. References to generic type MGenericTile<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormInsertCreateCommand.java
 (at line 55)
parentModel = (MGenericTile<MUIElement>) model;
Type safety: Unchecked cast from Object to MGenericTile<MUIElement>

/src/org/eclipse/e4/tools/ui/designer/sashform/SashFormLayoutEditPolicy.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormLayoutEditPolicy.java
 (at line 110)
List<GraphicalEditPart> children = host.getChildren();
Type safety: The expression of type List needs unchecked conversion to conform to List<GraphicalEditPart>

/src/org/eclipse/e4/tools/ui/designer/sashform/SashFormUtil.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormUtil.java
 (at line 92)
MElementContainer<MPSCElement> parentNode = (MElementContainer<MPSCElement>) parent .getModel();
Type safety: Unchecked cast from Object to MElementContainer<MPSCElement>
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormUtil.java
 (at line 200)
List<VisualEditPart> editParts = new ArrayList<VisualEditPart>(request .getEditParts());
Type safety: The expression of type List needs unchecked conversion to conform to Collection<? extends VisualEditPart>

/src/org/eclipse/e4/tools/ui/designer/utils/ClassLoaderHelper.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ClassLoaderHelper.java
 (at line 26)
import org.eclipse.core.runtime.NullProgressMonitor;
The import org.eclipse.core.runtime.NullProgressMonitor is never used

/src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 203)
return new Gradient(descs, iVals, gradientparts.length == 3 && gradientparts[2].indexOf("true") != -1); //$NON-NLS-1$
Type safety: The constructor IResourceUtiltities.Gradient(List, int[], boolean) belongs to the raw type IResourceUtiltities.Gradient. References to generic type IResourceUtiltities<ColorDesc,ImageDesc>.Gradient<ColorDesc> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 203)
return new Gradient(descs, iVals, gradientparts.length == 3 && gradientparts[2].indexOf("true") != -1); //$NON-NLS-1$
Type safety: The expression of type IResourceUtiltities.Gradient needs unchecked conversion to conform to IResourceUtiltities.Gradient<ColorDescriptor>
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 203)
return new Gradient(descs, iVals, gradientparts.length == 3
IResourceUtiltities.Gradient is a raw type. References to generic type IResourceUtiltities<ColorDesc,ImageDesc>.Gradient<ColorDesc> 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/tools/ui/designer/E4ReflectionContributionFactory.java : 11 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 23)
import org.eclipse.e4.workbench.ui.internal.Activator;
Discouraged access: The type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 24)
import org.eclipse.e4.workbench.ui.internal.Policy;
Discouraged access: The type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 25)
import org.eclipse.e4.workbench.ui.internal.ReflectionContributionFactory;
Discouraged access: The type ReflectionContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 36)
private ReflectionContributionFactory contributionFactory;
Discouraged access: The type ReflectionContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 48)
contributionFactory = new ReflectionContributionFactory(registry);
Discouraged access: The constructor ReflectionContributionFactory(IExtensionRegistry) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 48)
contributionFactory = new ReflectionContributionFactory(registry);
Discouraged access: The type ReflectionContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 143)
Activator.trace(Policy.DEBUG_CMDS, "calling: " + methodName, null); //$NON-NLS-1$
Discouraged access: The type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 143)
Activator.trace(Policy.DEBUG_CMDS, "calling: " + methodName, null); //$NON-NLS-1$
Discouraged access: The method trace(String, String, Throwable) from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 143)
Activator.trace(Policy.DEBUG_CMDS, "calling: " + methodName, null); //$NON-NLS-1$
Discouraged access: The type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 143)
Activator.trace(Policy.DEBUG_CMDS, "calling: " + methodName, null); //$NON-NLS-1$
Discouraged access: The field DEBUG_CMDS from the type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/E4UIEventPublisher.java : 2 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIEventPublisher.java
 (at line 25)
import org.eclipse.e4.workbench.ui.internal.UIEventPublisher;
Discouraged access: The type UIEventPublisher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIEventPublisher.java
 (at line 34)
* This class is copied from {@link UIEventPublisher}. Some hooks are added when
Discouraged access: The type UIEventPublisher is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java : 27 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 27)
import org.eclipse.e4.workbench.ui.internal.Activator;
Discouraged access: The type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 28)
import org.eclipse.e4.workbench.ui.internal.E4Workbench;
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 40)
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 81)
public IDOMNode getTextNode(Object model) {
Discouraged access: The type IDOMNode is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.wst.xml.core_1.1.500.v200912170622.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 109)
if (!E4Workbench.getServiceContext().containsKey(
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 109)
if (!E4Workbench.getServiceContext().containsKey(
Discouraged access: The method getServiceContext() from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 112)
E4Workbench.getServiceContext().set(MApplication.class.getName(),
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 112)
E4Workbench.getServiceContext().set(MApplication.class.getName(),
Discouraged access: The method getServiceContext() from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 123)
String xmiURI = getArgValue(E4Workbench.XMI_URI_ARG);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 123)
String xmiURI = getArgValue(E4Workbench.XMI_URI_ARG);
Discouraged access: The field XMI_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 124)
appContext.set(E4Workbench.XMI_URI_ARG, xmiURI);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 124)
appContext.set(E4Workbench.XMI_URI_ARG, xmiURI);
Discouraged access: The field XMI_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 125)
String cssURI = getArgValue(E4Workbench.CSS_URI_ARG);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 125)
String cssURI = getArgValue(E4Workbench.CSS_URI_ARG);
Discouraged access: The field CSS_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 126)
appContext.set(E4Workbench.CSS_URI_ARG, cssURI);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 126)
appContext.set(E4Workbench.CSS_URI_ARG, cssURI);
Discouraged access: The field CSS_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 127)
String cssResourcesURI = getArgValue(E4Workbench.CSS_RESOURCE_URI_ARG);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 127)
String cssResourcesURI = getArgValue(E4Workbench.CSS_RESOURCE_URI_ARG);
Discouraged access: The field CSS_RESOURCE_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 128)
appContext.set(E4Workbench.CSS_RESOURCE_URI_ARG, cssResourcesURI);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 128)
appContext.set(E4Workbench.CSS_RESOURCE_URI_ARG, cssResourcesURI);
Discouraged access: The field CSS_RESOURCE_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 131)
String presentationURI = getArgValue(E4Workbench.PRESENTATION_URI_ARG);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 131)
String presentationURI = getArgValue(E4Workbench.PRESENTATION_URI_ARG);
Discouraged access: The field PRESENTATION_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 135)
appContext.set(E4Workbench.PRESENTATION_URI_ARG, presentationURI);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 135)
appContext.set(E4Workbench.PRESENTATION_URI_ARG, presentationURI);
Discouraged access: The field PRESENTATION_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 140)
new ResourceUtiltities(project, Activator.getDefault()
Discouraged access: The type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 140)
new ResourceUtiltities(project, Activator.getDefault()
Discouraged access: The method getDefault() from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 140)
new ResourceUtiltities(project, Activator.getDefault() .getBundleAdmin()));
Discouraged access: The method getBundleAdmin() from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java : 31 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 35)
import org.eclipse.e4.workbench.ui.internal.Activator;
Discouraged access: The type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 36)
import org.eclipse.e4.workbench.ui.internal.E4Workbench;
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 37)
import org.eclipse.e4.workbench.ui.internal.ModelExtensionProcessor;
Discouraged access: The type ModelExtensionProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 38)
import org.eclipse.e4.workbench.ui.internal.Parameter;
Discouraged access: The type Parameter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 39)
import org.eclipse.e4.workbench.ui.internal.Policy;
Discouraged access: The type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 40)
import org.eclipse.e4.workbench.ui.internal.Workbench;
Discouraged access: The type Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 76)
Activator.trace(Policy.DEBUG_WORKBENCH, "init() workbench", null); //$NON-NLS-1$
Discouraged access: The type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 76)
Activator.trace(Policy.DEBUG_WORKBENCH, "init() workbench", null); //$NON-NLS-1$
Discouraged access: The method trace(String, String, Throwable) from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 76)
Activator.trace(Policy.DEBUG_WORKBENCH, "init() workbench", null); //$NON-NLS-1$
Discouraged access: The type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 76)
Activator.trace(Policy.DEBUG_WORKBENCH, "init() workbench", null); //$NON-NLS-1$
Discouraged access: The field DEBUG_WORKBENCH from the type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 79)
Activator.trace(Policy.DEBUG_CMDS,
Discouraged access: The type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 79)
Activator.trace(Policy.DEBUG_CMDS, "Initialize service from model", null); //$NON-NLS-1$
Discouraged access: The method trace(String, String, Throwable) from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 79)
Activator.trace(Policy.DEBUG_CMDS,
Discouraged access: The type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 79)
Activator.trace(Policy.DEBUG_CMDS,
Discouraged access: The field DEBUG_CMDS from the type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 92)
ArrayList<Parameter> parmList = new ArrayList<Parameter>();
Discouraged access: The type Parameter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 92)
ArrayList<Parameter> parmList = new ArrayList<Parameter>();
Discouraged access: The type Parameter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 94)
parmList.add(new Parameter(cmdParm.getId(), cmdParm .getName(), null, null, cmdParm.isOptional()));
Discouraged access: The constructor Parameter(String, String, IConfigurationElement, ParameterType, boolean) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 94)
parmList.add(new Parameter(cmdParm.getId(), cmdParm
Discouraged access: The type Parameter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 97)
parms = parmList.toArray(new Parameter[parmList.size()]);
Discouraged access: The type Parameter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 103)
ModelExtensionProcessor extProcessor = new ModelExtensionProcessor(
Discouraged access: The type ModelExtensionProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 103)
ModelExtensionProcessor extProcessor = new ModelExtensionProcessor( appElement);
Discouraged access: The constructor ModelExtensionProcessor(MApplication) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 103)
ModelExtensionProcessor extProcessor = new ModelExtensionProcessor(
Discouraged access: The type ModelExtensionProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 105)
extProcessor.addModelExtensions();
Discouraged access: The method addModelExtensions() from the type ModelExtensionProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 108)
Workbench.processHierarchy(appElement);
Discouraged access: The type Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 108)
Workbench.processHierarchy(appElement);
Discouraged access: The method processHierarchy(Object) from the type Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 121)
.get(E4Workbench.PRESENTATION_URI_ARG);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 121)
.get(E4Workbench.PRESENTATION_URI_ARG);
Discouraged access: The field PRESENTATION_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
28. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 139)
.get(E4Workbench.CSS_URI_ARG);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 139)
.get(E4Workbench.CSS_URI_ARG);
Discouraged access: The field CSS_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 142)
.get(E4Workbench.CSS_RESOURCE_URI_ARG);
Discouraged access: The type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
31. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 142)
.get(E4Workbench.CSS_RESOURCE_URI_ARG);
Discouraged access: The field CSS_RESOURCE_URI_ARG from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/render/DesignerRender.java : 3 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerRender.java
 (at line 21)
import org.eclipse.e4.workbench.ui.internal.Workbench;
Discouraged access: The type Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerRender.java
 (at line 67)
localContext.set(Workbench.LOCAL_ACTIVE_SHELL, wbwShell);
Discouraged access: The type Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerRender.java
 (at line 67)
localContext.set(Workbench.LOCAL_ACTIVE_SHELL, wbwShell);
Discouraged access: The field LOCAL_ACTIVE_SHELL from the type Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100114-2115/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java : 41 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 25)
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/v20100112/plugins/org.eclipse.pde.core_3.5.100.v20100111.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 26)
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/v20100112/plugins/org.eclipse.pde.core_3.5.100.v20100111.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 27)
import org.eclipse.pde.internal.core.plugin.WorkspacePluginModelBase;
Discouraged access: The type WorkspacePluginModelBase is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.core_3.5.100.v20100111.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 28)
import org.eclipse.pde.internal.ui.PDEPlugin;
Discouraged access: The type PDEPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 29)
import org.eclipse.pde.internal.ui.PDEUIMessages;
Discouraged access: The type PDEUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 30)
import org.eclipse.pde.internal.ui.wizards.IProjectProvider;
Discouraged access: The type IProjectProvider is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 31)
import org.eclipse.pde.internal.ui.wizards.plugin.NewPluginProjectWizard;
Discouraged access: The type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 32)
import org.eclipse.pde.internal.ui.wizards.plugin.NewProjectCreationOperation;
Discouraged access: The type NewProjectCreationOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 33)
import org.eclipse.pde.internal.ui.wizards.plugin.NewProjectCreationPage;
Discouraged access: The type NewProjectCreationPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 34)
import org.eclipse.pde.internal.ui.wizards.plugin.PluginContentPage;
Discouraged access: The type PluginContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 35)
import org.eclipse.pde.internal.ui.wizards.plugin.PluginFieldData;
Discouraged access: The type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 41)
public class E4NewProjectWizard extends NewPluginProjectWizard {
Discouraged access: The type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 43)
private PluginFieldData fPluginData;
Discouraged access: The type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 45)
private IProjectProvider fProjectProvider;
Discouraged access: The type IProjectProvider is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 48)
fPluginData = new PluginFieldData();
Discouraged access: The constructor PluginFieldData() is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 48)
fPluginData = new PluginFieldData();
Discouraged access: The type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 52)
fMainPage = new NewProjectCreationPage(
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 52)
fMainPage = new NewProjectCreationPage( "main", fPluginData, false, getSelection()); //$NON-NLS-1$
Discouraged access: The constructor NewProjectCreationPage(String, AbstractFieldData, boolean, IStructuredSelection) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 52)
fMainPage = new NewProjectCreationPage(
Discouraged access: The type NewProjectCreationPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 53)
"main", fPluginData, false, getSelection()); //$NON-NLS-1$
Discouraged access: The method getSelection() from the type NewWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 54)
fMainPage.setTitle(PDEUIMessages.NewProjectWizard_MainPage_title);
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 54)
fMainPage.setTitle(PDEUIMessages.NewProjectWizard_MainPage_title);
Discouraged access: The type PDEUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 54)
fMainPage.setTitle(PDEUIMessages.NewProjectWizard_MainPage_title);
Discouraged access: The field NewProjectWizard_MainPage_title from the type PDEUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 55)
fMainPage.setDescription(PDEUIMessages.NewProjectWizard_MainPage_desc);
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 55)
fMainPage.setDescription(PDEUIMessages.NewProjectWizard_MainPage_desc);
Discouraged access: The type PDEUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 55)
fMainPage.setDescription(PDEUIMessages.NewProjectWizard_MainPage_desc);
Discouraged access: The field NewProjectWizard_MainPage_desc from the type PDEUIMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 56)
String pname = getDefaultValue(DEF_PROJECT_NAME);
Discouraged access: The method getDefaultValue(String) from the type NewWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
28. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 56)
String pname = getDefaultValue(DEF_PROJECT_NAME);
Discouraged access: The field DEF_PROJECT_NAME from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 58)
fMainPage.setInitialProjectName(pname);
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 59)
addPage(fMainPage);
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
31. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 61)
fProjectProvider = new IProjectProvider() {
Discouraged access: The type IProjectProvider is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
32. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 63)
return fMainPage.getProjectName();
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
33. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 67)
return fMainPage.getProjectHandle();
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
34. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 71)
return fMainPage.getLocationPath();
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
35. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 75)
fContentPage = new PluginContentPage(
Discouraged access: The field fContentPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
36. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 75)
fContentPage = new PluginContentPage( "page2", fProjectProvider, fMainPage, fPluginData); //$NON-NLS-1$
Discouraged access: The constructor PluginContentPage(String, IProjectProvider, NewProjectCreationPage, AbstractFieldData) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
37. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 75)
fContentPage = new PluginContentPage(
Discouraged access: The type PluginContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
38. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 76)
"page2", fProjectProvider, fMainPage, fPluginData); //$NON-NLS-1$
Discouraged access: The field fMainPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
39. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 80)
addPage(fContentPage);
Discouraged access: The field fContentPage from the type NewPluginProjectWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
40. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 174)
return fPluginData.getId();
Discouraged access: The method getId() from the type AbstractFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
41. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 178)
return fPluginData.getVersion();
Discouraged access: The method getVersion() from the type AbstractFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java : 4 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 21)
import org.eclipse.pde.internal.ui.wizards.IProjectProvider;
Discouraged access: The type IProjectProvider is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 63)
private IProjectProvider projectProvider;
Discouraged access: The type IProjectProvider is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 65)
protected NewApplicationWizardPage(IProjectProvider projectProvider) {
Discouraged access: The type IProjectProvider is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 75)
project = projectProvider.getProject();
Discouraged access: The method getProject() from the type IProjectProvider is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100112/plugins/org.eclipse.pde.ui_3.6.0.v20100111.jar