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

TOTAL : ERRORS: 0, WARNINGS: 319

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/E4DesignerMenuProvider.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4DesignerMenuProvider.java
 (at line 59)
ActionRegistry actionRegistry = getActionRegistry();
The local variable actionRegistry is never read
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4DesignerMenuProvider.java
 (at line 61)
List selectedEditParts = getViewer().getSelectedEditParts();
List is a raw type. References to generic type List<E> should be parameterized

/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/actions/CompactPartSashContainerAction.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CompactPartSashContainerAction.java
 (at line 12)
private MPartSashContainer partSashContainer;
The field CompactPartSashContainerAction.partSashContainer is never read locally

/src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java : 7 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 88)
List<MUIElement> elements = (List<MUIElement>) contents;
Type safety: Unchecked cast from Object to List<MUIElement>
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 107)
List<MUIElement> contents = (List<MUIElement>) Clipboard.getDefault().getContents();
Type safety: Unchecked cast from Object to List<MUIElement>

/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/CommandFactory.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CommandFactory.java
 (at line 35)
if (element instanceof Collection) {
Collection is a raw type. References to generic type Collection<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CommandFactory.java
 (at line 73)
} else if (container 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/CommandFactory.java
 (at line 76)
(MElementContainer<MUIElement>) container,
Type safety: Unchecked cast from Object to MElementContainer<MUIElement>

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 16)
import org.eclipse.e4.xwt.tools.ui.palette.Entry;
The import org.eclipse.e4.xwt.tools.ui.palette.Entry is never used
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 17)
import org.eclipse.e4.xwt.tools.ui.palette.Initializer;
The import org.eclipse.e4.xwt.tools.ui.palette.Initializer is never used
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 18)
import org.eclipse.e4.xwt.tools.ui.palette.request.EntryCreationFactory;
The import org.eclipse.e4.xwt.tools.ui.palette.request.EntryCreationFactory is never used
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 19)
import org.eclipse.e4.xwt.tools.ui.palette.tools.PaletteCreateRequest;
The import org.eclipse.e4.xwt.tools.ui.palette.tools.PaletteCreateRequest is never used
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 23)
import org.eclipse.gef.requests.CreationFactory;
The import org.eclipse.gef.requests.CreationFactory is never used
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 37)
private boolean after;
The field CreateCommand.after is never read locally
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 59)
if (model instanceof MElementContainer) {
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 60)
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 : 5 warnings :

OTHER WARNINGS
1. 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
2. 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
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 51)
modelChildren.add(item);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 77)
List children = getChildren();
List is a raw type. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 88)
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 : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 79)
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 80)
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 80)
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 83)
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 87)
children.add(object);
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/outline/E4DesignerOutlineContentProvider.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/outline/E4DesignerOutlineContentProvider.java
 (at line 28)
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/outline/commands/MoveOnCommand.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/outline/commands/MoveOnCommand.java
 (at line 100)
if (target instanceof MElementContainer) {
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/palette/E4PaletteHelper.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/palette/E4PaletteHelper.java
 (at line 61)
public static MApplicationElement 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/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/ResourceUtiltities.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 28)
import org.eclipse.e4.workbench.ui.internal.Activator;
The import org.eclipse.e4.workbench.ui.internal.Activator is never used
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 214)
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
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 214)
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>
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 214)
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

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 13)
import java.io.ByteArrayInputStream;
The import java.io.ByteArrayInputStream is never used
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 15)
import java.io.InputStream;
The import java.io.InputStream is never used
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 18)
import java.util.Collections;
The import java.util.Collections is never used
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 31)
import org.eclipse.core.runtime.FileLocator;
The import org.eclipse.core.runtime.FileLocator is never used
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 70)
import org.eclipse.pde.core.plugin.IPluginReference;
The import org.eclipse.pde.core.plugin.IPluginReference is never used

/src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java : 100 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 162)
TreeSet availableEEs = new TreeSet();
TreeSet is a raw type. References to generic type TreeSet<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 162)
TreeSet availableEEs = new TreeSet();
TreeSet is a raw type. References to generic type TreeSet<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 164)
availableEEs.add(exeEnvs[i].getId());
Type safety: The method add(Object) belongs to the raw type TreeSet. References to generic type TreeSet<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 166)
availableEEs.add(NO_EXECUTION_ENVIRONMENT);
Type safety: The method add(Object) belongs to the raw type TreeSet. References to generic type TreeSet<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 169)
fEEChoice.setItems((String[]) availableEEs.toArray(new String[availableEEs.size() - 1]));
Type safety: The method toArray(Object[]) belongs to the raw type AbstractCollection. References to generic type AbstractCollection<E> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java : 12 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 39)
import org.eclipse.pde.internal.ui.wizards.templates.ControlStack;
The import org.eclipse.pde.internal.ui.wizards.templates.ControlStack is never used
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 145)
Map childZipEntries = new HashMap(); // "dir/" or "dir/file.java"
Map is a raw type. References to generic type Map<K,V> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 145)
Map childZipEntries = new HashMap(); // "dir/" or "dir/file.java"
HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 147)
for (Enumeration zipEntries = zipFile.entries(); zipEntries.hasMoreElements();) {
Enumeration is a raw type. References to generic type Enumeration<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 159)
childZipEntries.put(zipEntry.getName(), zipEntry);
Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 164)
childZipEntries.put(name, dirEntry);
Type safety: The method put(Object, Object) belongs to the raw type Map. References to generic type Map<K,V> should be parameterized
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 169)
for (Iterator it = childZipEntries.values().iterator(); it.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 218)
private void copyFile(String fileName, InputStream input, IContainer dst,final String destPath, IProgressMonitor monitor) throws CoreException {
The method copyFile(String, InputStream, IContainer, String, IProgressMonitor) from the type TemplateOperation is never used locally

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/DesignerReflectionContributionFactory.java : 4 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java
 (at line 6)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java
 (at line 11)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java
 (at line 15)
super(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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java
 (at line 27)
return super.getBundle(platformURI);
Discouraged access: The method getBundle(URI) from the type ReflectionContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot

/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 51)
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/v20100226/plugins/org.eclipse.wst.xml.core_1.1.500.v201002171157.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 92)
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/v20100226/plugins/org.eclipse.wst.xml.core_1.1.500.v201002171157.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 120)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 120)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 123)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 123)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 131)
Activator.getDefault().getContext());
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 131)
Activator.getDefault().getContext());
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 131)
Activator.getDefault().getContext());
Discouraged access: The method getContext() from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 143)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 143)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 144)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 144)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 145)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 145)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 146)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 146)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 147)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 147)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 148)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 148)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 151)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 151)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 155)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 155)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
28. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 163)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 163)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 163)
new ResourceUtiltities(project, Activator.getDefault() .getBundleAdmin(), projectBundleSession));
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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java : 5 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 29)
import org.eclipse.ui.internal.WorkbenchMessages;
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 35)
setText(WorkbenchMessages.Workbench_copy);
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 35)
setText(WorkbenchMessages.Workbench_copy);
Discouraged access: The field Workbench_copy from the type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 36)
setToolTipText(WorkbenchMessages.Workbench_copyToolTip);
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 36)
setToolTipText(WorkbenchMessages.Workbench_copyToolTip);
Discouraged access: The field Workbench_copyToolTip from the type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar

/src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java : 5 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 32)
import org.eclipse.ui.internal.WorkbenchMessages;
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 41)
this.setText(WorkbenchMessages.Workbench_cut);
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 41)
this.setText(WorkbenchMessages.Workbench_cut);
Discouraged access: The field Workbench_cut from the type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 42)
this.setToolTipText(WorkbenchMessages.Workbench_cutToolTip);
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 42)
this.setToolTipText(WorkbenchMessages.Workbench_cutToolTip);
Discouraged access: The field Workbench_cutToolTip from the type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar

/src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java : 7 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 32)
import org.eclipse.ui.internal.WorkbenchMessages;
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 38)
setText(WorkbenchMessages.Workbench_paste);
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 38)
setText(WorkbenchMessages.Workbench_paste);
Discouraged access: The field Workbench_paste from the type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 39)
setToolTipText(WorkbenchMessages.Workbench_pasteToolTip);
Discouraged access: The type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 39)
setToolTipText(WorkbenchMessages.Workbench_pasteToolTip);
Discouraged access: The field Workbench_pasteToolTip from the type WorkbenchMessages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.ui.workbench_3.6.0.I20100224-1330.jar

/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/I20100227-1345/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/I20100227-1345/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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java : 7 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 28)
import org.eclipse.osgi.baseadaptor.BaseData;
Discouraged access: The type BaseData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.osgi_3.6.0.v20100222.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 29)
import org.eclipse.osgi.framework.internal.core.AbstractBundle;
Discouraged access: The type AbstractBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.osgi_3.6.0.v20100222.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 232)
BaseData bundleData = (BaseData) ((AbstractBundle) bundle).getBundleData();
Discouraged access: The type BaseData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.osgi_3.6.0.v20100222.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 232)
BaseData bundleData = (BaseData) ((AbstractBundle) bundle).getBundleData();
Discouraged access: The type BaseData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.osgi_3.6.0.v20100222.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 232)
BaseData bundleData = (BaseData) ((AbstractBundle) bundle).getBundleData();
Discouraged access: The method getBundleData() from the type AbstractBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.osgi_3.6.0.v20100222.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 232)
BaseData bundleData = (BaseData) ((AbstractBundle) bundle).getBundleData();
Discouraged access: The type AbstractBundle is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.osgi_3.6.0.v20100222.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 244)
bundleData.setClassPathString(classpath.toString());
Discouraged access: The method setClassPathString(String) from the type BaseData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.osgi_3.6.0.v20100222.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java
 (at line 28)
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/I20100227-1345/plugins/org.eclipse.e4.ui.workbench/@dot

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 71)
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/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 72)
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/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 73)
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/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 74)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 75)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 76)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 77)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 78)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 79)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 87)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 89)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 91)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 95)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 95)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 99)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 100)
"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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 101)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 101)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 101)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 102)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 102)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 102)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 103)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 103)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 105)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 106)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 108)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
28. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 110)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 114)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 118)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
31. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 123)
"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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
32. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 571)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
33. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 575)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java : 7 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 57)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 64)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 74)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 364)
projectProvider.getProjectName(), String.class,
Discouraged access: The method getProjectName() 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 389)
proNameText.setText(projectProvider.getProjectName());
Discouraged access: The method getProjectName() 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewApplicationWizardPage.java
 (at line 410)
data.put(PRODUCT_NAME, projectProvider.getProjectName());
Discouraged access: The method getProjectName() 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java : 8 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 14)
import org.eclipse.pde.internal.ui.wizards.plugin.AbstractFieldData;
Discouraged access: The type AbstractFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 17)
public class NewProjectCreationPage extends 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 19)
public NewProjectCreationPage(String pageName, AbstractFieldData data, boolean fragment, IStructuredSelection selection) {
Discouraged access: The type AbstractFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 20)
super(pageName, data, fragment, selection);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 25)
super.createControl(parent);
Discouraged access: The method createControl(Composite) from the type NewProjectCreationPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 26)
fOSGIButton.setSelection(true);
Discouraged access: The field fOSGIButton from the type NewProjectCreationPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 27)
fEclipseButton.setEnabled(false);
Discouraged access: The field fEclipseButton from the type NewProjectCreationPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/NewProjectCreationPage.java
 (at line 28)
fEclipseCombo.setEnabled(false);
Discouraged access: The field fEclipseCombo from the type NewProjectCreationPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java : 100 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 25)
import org.eclipse.pde.internal.core.util.PDEJavaHelper;
Discouraged access: The type PDEJavaHelper is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 26)
import org.eclipse.pde.internal.core.util.VMUtil;
Discouraged access: The type VMUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 27)
import org.eclipse.pde.internal.ui.IHelpContextIds;
Discouraged access: The type IHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 28)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 29)
import org.eclipse.pde.internal.ui.SWTFactory;
Discouraged access: The type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 31)
import org.eclipse.pde.internal.ui.wizards.plugin.AbstractFieldData;
Discouraged access: The type AbstractFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 32)
import org.eclipse.pde.internal.ui.wizards.plugin.ContentPage;
Discouraged access: The type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 34)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 35)
import org.eclipse.pde.internal.ui.wizards.plugin.TemplateListSelectionPage;
Discouraged access: The type TemplateListSelectionPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 57)
public class PluginContentPage extends ContentPage {
Discouraged access: The type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 80)
private final static String NO_EXECUTION_ENVIRONMENT = PDEUIMessages.PluginContentPage_noEE;
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 80)
private final static String NO_EXECUTION_ENVIRONMENT = PDEUIMessages.PluginContentPage_noEE;
Discouraged access: The field PluginContentPage_noEE 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 87)
if (fInitialized)
Discouraged access: The field fInitialized from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 88)
fChangedGroups |= P_CLASS_GROUP;
Discouraged access: The field fChangedGroups from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 100)
public PluginContentPage(String pageName, IProjectProvider provider, NewProjectCreationPage page, AbstractFieldData data) {
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 100)
public PluginContentPage(String pageName, IProjectProvider provider, NewProjectCreationPage page, AbstractFieldData data) {
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 100)
public PluginContentPage(String pageName, IProjectProvider provider, NewProjectCreationPage page, AbstractFieldData data) {
Discouraged access: The type AbstractFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 101)
super(pageName, provider, page, data);
Discouraged access: The constructor ContentPage(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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 102)
setTitle(PDEUIMessages.ContentPage_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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 102)
setTitle(PDEUIMessages.ContentPage_title);
Discouraged access: The field ContentPage_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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 103)
setDescription(PDEUIMessages.ContentPage_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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 103)
setDescription(PDEUIMessages.ContentPage_desc);
Discouraged access: The field ContentPage_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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 118)
PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), IHelpContextIds.NEW_PROJECT_REQUIRED_DATA);
Discouraged access: The type IHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 118)
PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), IHelpContextIds.NEW_PROJECT_REQUIRED_DATA);
Discouraged access: The field NEW_PROJECT_REQUIRED_DATA from the type IHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 126)
Group propertiesGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pGroup, 3, 1, GridData.FILL_HORIZONTAL);
Discouraged access: The method createGroup(Composite, String, int, int, int) from the type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
28. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 126)
Group propertiesGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pGroup, 3, 1, GridData.FILL_HORIZONTAL);
Discouraged access: The type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 126)
Group propertiesGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pGroup, 3, 1, GridData.FILL_HORIZONTAL);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 126)
Group propertiesGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pGroup, 3, 1, GridData.FILL_HORIZONTAL);
Discouraged access: The field ContentPage_pGroup 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
31. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 129)
label.setText(PDEUIMessages.ContentPage_pid);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
32. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 129)
label.setText(PDEUIMessages.ContentPage_pid);
Discouraged access: The field ContentPage_pid 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
33. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 130)
fIdText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field fIdText from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
34. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 130)
fIdText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The method createText(Composite, ModifyListener, int) from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
35. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 130)
fIdText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field propertiesListener from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
36. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 133)
label.setText(PDEUIMessages.ContentPage_pversion);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
37. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 133)
label.setText(PDEUIMessages.ContentPage_pversion);
Discouraged access: The field ContentPage_pversion 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
38. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 134)
fVersionText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field fVersionText from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
39. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 134)
fVersionText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The method createText(Composite, ModifyListener, int) from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
40. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 134)
fVersionText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field propertiesListener from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
41. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 137)
label.setText(PDEUIMessages.ContentPage_pname);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
42. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 137)
label.setText(PDEUIMessages.ContentPage_pname);
Discouraged access: The field ContentPage_pname 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
43. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 138)
fNameText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field fNameText from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
44. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 138)
fNameText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The method createText(Composite, ModifyListener, int) from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
45. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 138)
fNameText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field propertiesListener from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
46. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 141)
label.setText(PDEUIMessages.ContentPage_pprovider);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
47. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 141)
label.setText(PDEUIMessages.ContentPage_pprovider);
Discouraged access: The field ContentPage_pprovider 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
48. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 142)
fProviderText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field fProviderText from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
49. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 142)
fProviderText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The method createText(Composite, ModifyListener, int) from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
50. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 142)
fProviderText = createText(propertiesGroup, propertiesListener, 2);
Discouraged access: The field propertiesListener from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
51. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 154)
fEELabel.setText(PDEUIMessages.NewProjectCreationPage_executionEnvironments_label);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
52. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 154)
fEELabel.setText(PDEUIMessages.NewProjectCreationPage_executionEnvironments_label);
Discouraged access: The field NewProjectCreationPage_executionEnvironments_label 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
53. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 161)
IExecutionEnvironment[] exeEnvs = VMUtil.getExecutionEnvironments();
Discouraged access: The method getExecutionEnvironments() from the type VMUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
54. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 161)
IExecutionEnvironment[] exeEnvs = VMUtil.getExecutionEnvironments();
Discouraged access: The type VMUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
55. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 181)
if (VMUtil.getExecutionEnvironment(EEChoices[i]).isStrictlyCompatible(defaultVM)) {
Discouraged access: The method getExecutionEnvironment(String) from the type VMUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
56. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 181)
if (VMUtil.getExecutionEnvironment(EEChoices[i]).isStrictlyCompatible(defaultVM)) {
Discouraged access: The type VMUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.core_3.6.0.v20100222.jar
57. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 191)
fExeEnvButton.setText(PDEUIMessages.NewProjectCreationPage_environmentsButton);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
58. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 191)
fExeEnvButton.setText(PDEUIMessages.NewProjectCreationPage_environmentsButton);
Discouraged access: The field NewProjectCreationPage_environmentsButton 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
59. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 205)
Group classGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pClassGroup, 2, 1, GridData.FILL_HORIZONTAL);
Discouraged access: The method createGroup(Composite, String, int, int, int) from the type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
60. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 205)
Group classGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pClassGroup, 2, 1, GridData.FILL_HORIZONTAL);
Discouraged access: The type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
61. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 205)
Group classGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pClassGroup, 2, 1, GridData.FILL_HORIZONTAL);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
62. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 205)
Group classGroup = SWTFactory.createGroup(container, PDEUIMessages.ContentPage_pClassGroup, 2, 1, GridData.FILL_HORIZONTAL);
Discouraged access: The field ContentPage_pClassGroup 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
63. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 209)
fGenerateActivator = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_generate, null, (settings != null) ? !settings.getBoolean(S_GENERATE_ACTIVATOR) : true, 2);
Discouraged access: The method createCheckButton(Composite, String, Image, boolean, int) from the type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
64. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 209)
fGenerateActivator = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_generate, null, (settings != null) ? !settings.getBoolean(S_GENERATE_ACTIVATOR) : true, 2);
Discouraged access: The type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
65. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 209)
fGenerateActivator = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_generate, null, (settings != null) ? !settings.getBoolean(S_GENERATE_ACTIVATOR) : true, 2);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
66. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 209)
fGenerateActivator = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_generate, null, (settings != null) ? !settings.getBoolean(S_GENERATE_ACTIVATOR) : true, 2);
Discouraged access: The field ContentPage_generate 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
67. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 220)
fClassLabel.setText(PDEUIMessages.ContentPage_classname);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
68. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 220)
fClassLabel.setText(PDEUIMessages.ContentPage_classname);
Discouraged access: The field ContentPage_classname 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
69. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 224)
fClassText = createText(classGroup, classListener);
Discouraged access: The method createText(Composite, ModifyListener) from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
70. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 226)
fUIPlugin = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_uicontribution, null, (settings != null) ? !settings.getBoolean(S_UI_PLUGIN) : true, 2);
Discouraged access: The method createCheckButton(Composite, String, Image, boolean, int) from the type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
71. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 226)
fUIPlugin = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_uicontribution, null, (settings != null) ? !settings.getBoolean(S_UI_PLUGIN) : true, 2);
Discouraged access: The type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
72. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 226)
fUIPlugin = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_uicontribution, null, (settings != null) ? !settings.getBoolean(S_UI_PLUGIN) : true, 2);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
73. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 226)
fUIPlugin = SWTFactory.createCheckButton(classGroup, PDEUIMessages.ContentPage_uicontribution, null, (settings != null) ? !settings.getBoolean(S_UI_PLUGIN) : true, 2);
Discouraged access: The field ContentPage_uicontribution 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
74. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 234)
fApiAnalysisButton = SWTFactory.createCheckButton(classGroup, PDEUIMessages.PluginContentPage_enable_api_analysis, null, false, 2);
Discouraged access: The method createCheckButton(Composite, String, Image, boolean, int) from the type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
75. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 234)
fApiAnalysisButton = SWTFactory.createCheckButton(classGroup, PDEUIMessages.PluginContentPage_enable_api_analysis, null, false, 2);
Discouraged access: The type SWTFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
76. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 234)
fApiAnalysisButton = SWTFactory.createCheckButton(classGroup, PDEUIMessages.PluginContentPage_enable_api_analysis, null, false, 2);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
77. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 234)
fApiAnalysisButton = SWTFactory.createCheckButton(classGroup, PDEUIMessages.PluginContentPage_enable_api_analysis, null, false, 2);
Discouraged access: The field PluginContentPage_enable_api_analysis 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
78. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 248)
super.updateData();
Discouraged access: The method updateData() from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
79. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 249)
PluginFieldData data = (PluginFieldData) fData;
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
80. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 249)
PluginFieldData data = (PluginFieldData) fData;
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
81. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 249)
PluginFieldData data = (PluginFieldData) fData;
Discouraged access: The field fData from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
82. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 250)
data.setClassname(fClassText.getText().trim());
Discouraged access: The method setClassname(String) from the type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
83. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 251)
data.setUIPlugin(fUIPlugin.getSelection());
Discouraged access: The method setUIPlugin(boolean) from the type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
84. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 252)
data.setDoGenerateClass(fGenerateActivator.getSelection());
Discouraged access: The method setDoGenerateClass(boolean) from the type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
85. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 253)
data.setRCPApplicationPlugin(!fData.isSimple() && !isPureOSGi());
Discouraged access: The method setRCPApplicationPlugin(boolean) from the type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
86. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 253)
data.setRCPApplicationPlugin(!fData.isSimple() && !isPureOSGi());
Discouraged access: The method isSimple() 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
87. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 253)
data.setRCPApplicationPlugin(!fData.isSimple() && !isPureOSGi());
Discouraged access: The field fData from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
88. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 254)
data.setEnableAPITooling(fApiAnalysisButton.getSelection());
Discouraged access: The method setEnableAPITooling(boolean) from the type PluginFieldData is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
89. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 256)
fData.setExecutionEnvironment(fEEChoice.getText().trim());
Discouraged access: The method setExecutionEnvironment(String) 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
90. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 256)
fData.setExecutionEnvironment(fEEChoice.getText().trim());
Discouraged access: The field fData from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
91. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 258)
fData.setExecutionEnvironment(null);
Discouraged access: The method setExecutionEnvironment(String) 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
92. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 258)
fData.setExecutionEnvironment(null);
Discouraged access: The field fData from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
93. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 267)
fMainPage.updateData();
Discouraged access: The method updateData() from the type NewProjectCreationPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
94. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 267)
fMainPage.updateData();
Discouraged access: The field fMainPage from the type ContentPage is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
95. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/PluginContentPage.java
 (at line 268)
fGenerateActivator.setSelection(!fData.isSimple());
Discouraged access: The method isSimple() 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java : 12 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 38)
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 39)
import org.eclipse.pde.internal.ui.wizards.templates.ControlStack;
Discouraged access: The type ControlStack is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 59)
monitor.setTaskName(PDEUIMessages.AbstractTemplateSection_generating);
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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 59)
monitor.setTaskName(PDEUIMessages.AbstractTemplateSection_generating);
Discouraged access: The field AbstractTemplateSection_generating 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/v20100226/plugins/org.eclipse.pde.ui_3.6.0.v20100222.jar