Compiler log for org.eclipse.e4.tools.ui.designer_0.9.0.v20100523bis : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 541

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/dataform/AbstractDataForm.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/dataform/AbstractDataForm.java
 (at line 88)
bindings = new ArrayList<Binding>(bc.getBindings());
Type safety: The expression of type IObservableList needs unchecked conversion to conform to Collection<? extends Binding>

/src/org/eclipse/e4/tools/ui/dataform/DataCopier.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/dataform/DataCopier.java
 (at line 23)
import org.eclipse.emf.ecore.EReference;
The import org.eclipse.emf.ecore.EReference is never used
2. WARNING in /src/org/eclipse/e4/tools/ui/dataform/DataCopier.java
 (at line 121)
List oldValue = (List) eObj.eGet(sf);
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/dataform/DataCopier.java
 (at line 121)
List oldValue = (List) eObj.eGet(sf);
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/dataform/DataCopier.java
 (at line 129)
oldValue.add(newValue);
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/dataform/workbench/events/EventFactory.java : 11 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 262)
List list = (List) oldValue;
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 262)
List list = (List) oldValue;
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 264)
list.addAll(result);
Type safety: The method addAll(Collection) belongs to the raw type List. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 272)
dialog.setInitialElementSelections((List) (reference.isMany() ? oldValue
List is a raw type. References to generic type List<E> should be parameterized

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4Designer.java
 (at line 92)
getSelectionActions().add(action.getId());
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4Designer.java
 (at line 96)
getSelectionActions().add(action.getId());
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4Designer.java
 (at line 100)
getSelectionActions().add(action.getId());
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/E4DesignerMenuProvider.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4DesignerMenuProvider.java
 (at line 78)
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/E4WorkbenchProxy.java : 39 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 13)
import java.lang.reflect.InvocationTargetException;
The import java.lang.reflect.InvocationTargetException is never used

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/FindWithContributionURIAction.java
 (at line 41)
List selectedEditParts = viewer.getSelectedEditParts();
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/FindWithContributionURIAction.java
 (at line 43)
editparts.addAll(selectedEditParts);
Type safety: The expression of type List needs unchecked conversion to conform to Collection<? extends EditPart>

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/FindWithElementIdAction.java
 (at line 41)
List selectedEditParts = viewer.getSelectedEditParts();
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/FindWithElementIdAction.java
 (at line 43)
editparts.addAll(selectedEditParts);
Type safety: The expression of type List needs unchecked conversion to conform to Collection<? extends EditPart>

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/FindWithElementNameAction.java
 (at line 41)
List selectedEditParts = viewer.getSelectedEditParts();
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/FindWithElementNameAction.java
 (at line 43)
editparts.addAll(selectedEditParts);
Type safety: The expression of type List needs unchecked conversion to conform to Collection<? extends EditPart>

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/NewChildAction.java
 (at line 96)
List featureValue = (List) newContainer.eGet(eContainingFeature);
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/NewChildAction.java
 (at line 96)
List featureValue = (List) newContainer.eGet(eContainingFeature);
List is a raw type. References to generic type List<E> should be parameterized

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

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

/src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java : 6 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java
 (at line 49)
List listValue = (List) oldChild;
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java
 (at line 49)
List listValue = (List) oldChild;
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java
 (at line 53)
listValue.add(index, newChild);
Type safety: The method add(int, 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/commands/AddChildCommand.java
 (at line 67)
List listValue = (List) container.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java
 (at line 67)
List listValue = (List) container.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/AddChildCommand.java
 (at line 68)
listValue.add(index, newChild);
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/commands/ApplyAttributeSettingCommand.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ApplyAttributeSettingCommand.java
 (at line 65)
List oldValue = (List) eObject.eGet(feature);
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ApplyAttributeSettingCommand.java
 (at line 65)
List oldValue = (List) eObject.eGet(feature);
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ApplyAttributeSettingCommand.java
 (at line 73)
oldValue.add(newValue);
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/commands/ChangeParentCommand.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ChangeParentCommand.java
 (at line 62)
List listValue = (List) oldParent.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ChangeParentCommand.java
 (at line 62)
List listValue = (List) oldParent.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ChangeParentCommand.java
 (at line 80)
List listValue = (List) oldParent.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ChangeParentCommand.java
 (at line 80)
List listValue = (List) oldParent.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/ChangeParentCommand.java
 (at line 81)
listValue.add(oldIndex, newChild);
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/commands/CreateCommand.java : 8 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 76)
List children = ((MElementContainer<?>) parentModel).getChildren();
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 83)
List children = (List) value;
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 83)
List children = (List) value;
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 93)
private void addChild(List children, Object child) {
List is a raw type. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 95)
children.add(child);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 97)
children.add(index, child);
Type safety: The method add(int, Object) belongs to the raw type List. References to generic type List<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 110)
List children = (List) ((CategoryNode) parentModel)
List is a raw type. References to generic type List<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreateCommand.java
 (at line 110)
List children = (List) ((CategoryNode) parentModel)
List is a raw type. References to generic type List<E> should be parameterized

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/CreatePartCommand.java
 (at line 15)
import org.eclipse.e4.tools.ui.designer.utils.ApplicationModelHelper;
The import org.eclipse.e4.tools.ui.designer.utils.ApplicationModelHelper is never used

/src/org/eclipse/e4/tools/ui/designer/commands/part/MoveBottomCommand.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/part/MoveBottomCommand.java
 (at line 18)
import org.eclipse.e4.ui.model.application.MApplicationFactory;
The import org.eclipse.e4.ui.model.application.MApplicationFactory is never used
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/part/MoveBottomCommand.java
 (at line 27)
import org.eclipse.e4.ui.model.application.ui.basic.impl.BasicPackageImpl;
The import org.eclipse.e4.ui.model.application.ui.basic.impl.BasicPackageImpl is never used

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/commands/part/MoveLeftCommand.java
 (at line 18)
import org.eclipse.e4.ui.model.application.MApplicationFactory;
The import org.eclipse.e4.ui.model.application.MApplicationFactory is never used

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/dialogs/AbstractFindElementsDialog.java
 (at line 98)
protected Comparator getItemsComparator() {
Comparator is a raw type. References to generic type Comparator<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/dialogs/AbstractFindElementsDialog.java
 (at line 99)
return new Comparator() {
Comparator is a raw type. References to generic type Comparator<T> should be parameterized

/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 : 8 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/SashEditPart.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/SashEditPart.java
 (at line 14)
import org.eclipse.e4.ui.model.application.MApplicationFactory;
The import org.eclipse.e4.ui.model.application.MApplicationFactory is never used

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/WidgetEditPart.java
 (at line 80)
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 81)
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 81)
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 84)
children.addAll(Arrays.asList(childrenArray));
Type safety: The method addAll(Collection) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/tools/ui/designer/outline/TreeEditPartFactory.java : 1 warning :

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

/src/org/eclipse/e4/tools/ui/designer/outline/TreeEditPolicy.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/outline/TreeEditPolicy.java
 (at line 50)
List editParts = req.getEditParts();
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/outline/TreeEditPolicy.java
 (at line 68)
List editParts = request.getEditParts();
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/outline/TreeEditPolicy.java
 (at line 87)
List editParts = request.getEditParts();
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/outline/TreeEditPolicy.java
 (at line 90)
return new MoveChildrenCommand(host, editParts, index);
Type safety: The expression of type List needs unchecked conversion to conform to List<EditPart>

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/outline/commands/MoveChildrenCommand.java
 (at line 60)
parentModel = (MElementContainer<MUIElement>) model;
Type safety: Unchecked cast from Object to MElementContainer<MUIElement>

/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 : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormInsertCreateCommand.java
 (at line 57)
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<MPartSashContainerElement> parentNode = (MElementContainer<MPartSashContainerElement>) parent .getModel();
Type safety: Unchecked cast from Object to MElementContainer<MPartSashContainerElement>
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/sashform/SashFormUtil.java
 (at line 201)
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/session/FileHelper.java : 8 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 86)
E4DesignerPlugin.getDefault().logError(msg.toString(), e);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 156)
E4DesignerPlugin.getDefault().logError(msg.toString(), e);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 165)
E4DesignerPlugin.getDefault().logError(msg.toString(), ioe);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 206)
E4DesignerPlugin.getDefault().logError(msg.toString(), e);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 295)
E4DesignerPlugin.getDefault().logError(msg.toString(), e);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 307)
E4DesignerPlugin.getDefault().logError(msg.toString(), e);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 381)
E4DesignerPlugin.getDefault().logError(msg.toString(), e);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/FileHelper.java
 (at line 502)
E4DesignerPlugin.getDefault().logError(msg.toString(), ce);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way

/src/org/eclipse/e4/tools/ui/designer/session/JavaHelper.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/JavaHelper.java
 (at line 137)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.JavaHelper_AnalysingFailure, project.getProject().getName()), mue));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 85)
throw new CoreException(E4DesignerPlugin.getDefault().newStatus( IStatus.ERROR, NLS.bind(CommonMessages.ProjectBundleSession_URLFailure, manifest.getProject().getName()), t));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 101)
E4DesignerPlugin .getDefault() .logInfo( NLS.bind( "Workspace Bundle ''{0}'' is installed.", bundle.getSymbolicName())); //$NON-NLS-1$
The static method logInfo(String) from the type E4DesignerPlugin should be accessed in a static way
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 122)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.ProjectBundleSession_StoppingFailure, bundle.getSymbolicName()), t));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 137)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.ProjectBundleSession_UninstallationFailure, bundle.getSymbolicName()), t));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 148)
E4DesignerPlugin .getDefault() .logInfo( NLS.bind( "Target Bundle ''{0}'' is uninstalled.", bundle.getSymbolicName())); //$NON-NLS-1$
The static method logInfo(String) from the type E4DesignerPlugin should be accessed in a static way
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 216)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.ProjectBundleSession_InstallationFailure, pluginLocation), t));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 227)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.ProjectBundleSession_InstallationFailure, pluginLocation), null));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 238)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.ProjectBundleSession_IllegalBundleState, target, state), null));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 269)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.ProjectBundleSession_LoadFailure, qualifiedName, bundle .getSymbolicName()), cnfe));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 435)
E4DesignerPlugin .getDefault() .logInfo( NLS.bind( "Workspace Bundle ''{0}'' is uninstalled.", bundle.getSymbolicName())); //$NON-NLS-1$
The static method logInfo(String) from the type E4DesignerPlugin should be accessed in a static way
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 443)
E4DesignerPlugin .getDefault() .newStatus( IStatus.ERROR, NLS.bind( CommonMessages.ProjectBundleSession_UninstallationFailure, bundle.getSymbolicName()), be));
The static method newStatus(int, String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 457)
E4DesignerPlugin .getDefault() .logInfo( NLS.bind( "Target Bundle ''{0}'' is installed.", installed.getSymbolicName())); //$NON-NLS-1$
The static method logInfo(String) from the type E4DesignerPlugin should be accessed in a static way

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectHelper.java
 (at line 121)
E4DesignerPlugin.getDefault().logError(msg.toString(), ce);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectHelper.java
 (at line 150)
E4DesignerPlugin.getDefault().logError(msg.toString(), ce);
The static method logError(String, Throwable) from the type E4DesignerPlugin should be accessed in a static way

/src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java : 89 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 81)
existingImports = getExistingImports(astRoot);
Type safety: The expression of type Set needs unchecked conversion to conform to Set<String>
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 157)
Set existingImports = getExistingImports(astUnit);
Set is a raw type. References to generic type Set<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 222)
Set handleIds = new HashSet(typeMethods.length);
Set is a raw type. References to generic type Set<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 222)
Set handleIds = new HashSet(typeMethods.length);
HashSet is a raw type. References to generic type HashSet<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 224)
handleIds.add(typeMethods[index].getHandleIdentifier());
Type safety: The method add(Object) belongs to the raw type Set. References to generic type Set<E> should be parameterized
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 267)
Set existingImports = ASTHelper.getExistingImports(astRoot);
Set is a raw type. References to generic type Set<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 273)
private static void removeUnusedImports(ICompilationUnit cu, Set existingImports, boolean needsSave) throws CoreException {
Set is a raw type. References to generic type Set<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 283)
List importsDecls = root.imports();
List is a raw type. References to generic type List<E> should be parameterized
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 323)
private static Set /* String */getExistingImports(CompilationUnit root) {
Set is a raw type. References to generic type Set<E> should be parameterized
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 324)
List imports = root.imports();
List is a raw type. References to generic type List<E> should be parameterized
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 325)
Set res = new HashSet(imports.size());
Set is a raw type. References to generic type Set<E> should be parameterized
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 325)
Set res = new HashSet(imports.size());
HashSet is a raw type. References to generic type HashSet<E> should be parameterized
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 327)
res.add(ASTNodes.asString((ImportDeclaration) imports.get(i)));
Type safety: The method add(Object) belongs to the raw type Set. References to generic type Set<E> should be parameterized
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 535)
Set /* String (import names) */existingImports;
Set is a raw type. References to generic type Set<E> should be parameterized
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 588)
Set /* String (import names) */existingImports;
Set is a raw type. References to generic type Set<E> should be parameterized

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ApplicationModelHelper.java
 (at line 729)
List listValue = (List) parentObject.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ApplicationModelHelper.java
 (at line 729)
List listValue = (List) parentObject.eGet(reference);
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ApplicationModelHelper.java
 (at line 851)
children.addAll((Collection<? extends Object>) featureValue);
Type safety: Unchecked cast from Object to Collection<? extends Object>

/src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java : 6 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 125)
if (fullPathString == null) { return null; }
Dead code
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 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
4. 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>
5. 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/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 : 9 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 152)
Map childZipEntries = new HashMap(); // "dir/" or "dir/file.java"
Map is a raw type. References to generic type Map<K,V> should be parameterized
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 152)
Map childZipEntries = new HashMap(); // "dir/" or "dir/file.java"
HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 154)
for (Enumeration zipEntries = zipFile.entries(); zipEntries
Enumeration is a raw type. References to generic type Enumeration<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 167)
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
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 173)
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
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 178)
for (Iterator it = childZipEntries.values().iterator(); it.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/AbstractDataContextSelectionWizardPage.java
 (at line 43)
import org.eclipse.swt.layout.FillLayout;
The import org.eclipse.swt.layout.FillLayout is never used

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

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardCreatePartPage.java
 (at line 201)
public List getSuperInterfaces() {
List is a raw type. References to generic type List<E> should be parameterized

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings

/src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java : 11 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 43)
import org.eclipse.jdt.internal.ui.dialogs.FilteredTypesSelectionDialog;
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 124)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog(
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 124)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog( shell, false, service, scope, IJavaSearchConstants.CLASS);
Discouraged access: The constructor FilteredTypesSelectionDialog(Shell, boolean, IRunnableContext, IJavaSearchScope, int) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 124)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog(
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 126)
dialog.create();
Discouraged access: The method create() from the type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 127)
dialog.setTitle("Contribution URI");
Discouraged access: The method setTitle(String) from the type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/events/EventFactory.java
 (at line 130)
if (dialog.open() == Window.OK) {
Discouraged access: The method open() from the type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar

/src/org/eclipse/e4/tools/ui/dataform/workbench/validation/URIValidationRule.java : 4 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/validation/URIValidationRule.java
 (at line 19)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/validation/URIValidationRule.java
 (at line 104)
return Activator.getDefault().getBundleForName(platformURI.segment(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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/validation/URIValidationRule.java
 (at line 104)
return Activator.getDefault().getBundleForName(platformURI.segment(1));
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/tools/ui/dataform/workbench/validation/URIValidationRule.java
 (at line 104)
return Activator.getDefault().getBundleForName(platformURI.segment(1));
Discouraged access: The method getBundleForName(String) from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java : 5 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/I20100523-2015/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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java
 (at line 16)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java
 (at line 28)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/DesignerReflectionContributionFactory.java
 (at line 35)
bundle = super.getBundle(uriString);
Discouraged access: The method getBundle(String) from the type ReflectionContributionFactory is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 33)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 34)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 151)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 151)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 151)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 151)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 222)
return Activator.getDefault().getBundleForName(platformURI.segment(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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 222)
return Activator.getDefault().getBundleForName(platformURI.segment(1));
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4ReflectionContributionFactory.java
 (at line 222)
return Activator.getDefault().getBundleForName(platformURI.segment(1));
Discouraged access: The method getBundleForName(String) from the type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/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/I20100523-2015/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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 33)
import org.eclipse.e4.ui.workbench.swt.internal.E4Application;
Discouraged access: The type E4Application is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
2. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
3. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
4. 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/v20100523/plugins/org.eclipse.wst.xml.core_1.1.500.v201004290328.jar
5. 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/v20100523/plugins/org.eclipse.wst.xml.core_1.1.500.v201004290328.jar
6. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
7. 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/I20100523-2015/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 type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
9. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 126)
appContext = E4Application.createDefaultContext();
Discouraged access: The type E4Application is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 126)
appContext = E4Application.createDefaultContext();
Discouraged access: The method createDefaultContext() from the type E4Application is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
12. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
13. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
14. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
15. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
16. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
17. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
18. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
19. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
20. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
21. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
22. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
23. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
24. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
25. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
26. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
27. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
28. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 156)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4UIRenderer.java
 (at line 156)
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
31. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
32. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
33. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 33)
import org.eclipse.e4.ui.workbench.swt.internal.CSSStylingSupport;
Discouraged access: The type CSSStylingSupport is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 36)
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/I20100523-2015/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.E4CommandProcessor;
Discouraged access: The type E4CommandProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/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.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/I20100523-2015/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.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/I20100523-2015/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.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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 41)
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/I20100523-2015/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 type Activator is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/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 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/I20100523-2015/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 type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
11. 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/I20100523-2015/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,
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/I20100523-2015/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, "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/I20100523-2015/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 type Policy is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
15. 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/I20100523-2015/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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
17. 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/I20100523-2015/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.getElementId(), 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 94)
parmList.add(new Parameter(cmdParm.getElementId(), 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
20. 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/I20100523-2015/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(
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/I20100523-2015/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( 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
23. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
24. 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 108)
E4Workbench.processHierarchy(appElement);
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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 108)
E4Workbench.processHierarchy(appElement);
Discouraged access: The method processHierarchy(Object) from the type E4Workbench is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 111)
E4CommandProcessor.processCommands(appContext, appElement.getCommands());
Discouraged access: The type E4CommandProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
28. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 111)
E4CommandProcessor.processCommands(appContext, appElement.getCommands());
Discouraged access: The method processCommands(IEclipseContext, List<MCommand>) from the type E4CommandProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 112)
E4CommandProcessor.processBindings(appContext, appElement);
Discouraged access: The type E4CommandProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 112)
E4CommandProcessor.processBindings(appContext, appElement);
Discouraged access: The method processBindings(IEclipseContext, MBindingTableContainer) from the type E4CommandProcessor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
31. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 125)
.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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
32. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 125)
.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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
33. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 143)
.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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
34. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 143)
.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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
35. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 146)
.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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
36. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 146)
.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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot
37. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 147)
CSSStylingSupport.initializeStyling(display, cssURI,
Discouraged access: The type CSSStylingSupport is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
38. WARNING in /src/org/eclipse/e4/tools/ui/designer/E4WorkbenchProxy.java
 (at line 147)
CSSStylingSupport.initializeStyling(display, cssURI, cssResourcesURI, appContext);
Discouraged access: The method initializeStyling(Display, String, String, IEclipseContext) from the type CSSStylingSupport is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@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 30)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 36)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 36)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 37)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CopyElementAction.java
 (at line 37)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.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 33)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 42)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 42)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 43)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/CutElementAction.java
 (at line 43)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 34)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 40)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 40)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 41)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/actions/PasteElementAction.java
 (at line 41)
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/v20100523/plugins/org.eclipse.ui.workbench_3.6.0.I20100520-0800.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 20)
import org.eclipse.e4.ui.workbench.swt.internal.AbstractPartRenderer;
Discouraged access: The type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 69)
.getData(AbstractPartRenderer.OWNING_ME);
Discouraged access: The type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartContainerEditPart.java
 (at line 69)
.getData(AbstractPartRenderer.OWNING_ME);
Discouraged access: The field OWNING_ME from the type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot

/src/org/eclipse/e4/tools/ui/designer/editparts/PartEditPart.java : 3 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartEditPart.java
 (at line 16)
import org.eclipse.e4.ui.workbench.swt.internal.AbstractPartRenderer;
Discouraged access: The type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartEditPart.java
 (at line 65)
return (MUIElement) header.getData(AbstractPartRenderer.OWNING_ME);
Discouraged access: The type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/editparts/PartEditPart.java
 (at line 65)
return (MUIElement) header.getData(AbstractPartRenderer.OWNING_ME);
Discouraged access: The field OWNING_ME from the type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerPartRenderingEngine.java
 (at line 13)
import org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine;
Discouraged access: The type PartRenderingEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerPartRenderingEngine.java
 (at line 22)
public class DesignerPartRenderingEngine extends PartRenderingEngine {
Discouraged access: The type PartRenderingEngine is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerPartRenderingEngine.java
 (at line 29)
super(defaultRenderingFactoryId);
Discouraged access: The constructor PartRenderingEngine(String) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerWorkbenchRendererFactory.java
 (at line 15)
import org.eclipse.e4.ui.workbench.swt.internal.AbstractPartRenderer;
Discouraged access: The type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/render/DesignerWorkbenchRendererFactory.java
 (at line 21)
public AbstractPartRenderer getRenderer(MUIElement uiElement, Object parent) {
Discouraged access: The type AbstractPartRenderer is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/I20100523-2015/plugins/org.eclipse.e4.ui.workbench.swt/@dot

/src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java : 19 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/v20100523/plugins/org.eclipse.osgi_3.6.0.v20100517.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/v20100523/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 298)
BaseData bundleData = (BaseData) ((AbstractBundle) bundle)
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/v20100523/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 298)
BaseData bundleData = (BaseData) ((AbstractBundle) bundle)
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/v20100523/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 298)
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/v20100523/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 298)
BaseData bundleData = (BaseData) ((AbstractBundle) bundle)
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/v20100523/plugins/org.eclipse.osgi_3.6.0.v20100517.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/session/ProjectBundleSession.java
 (at line 311)
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/v20100523/plugins/org.eclipse.osgi_3.6.0.v20100517.jar

/src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java : 89 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 44)
import org.eclipse.jdt.internal.corext.codemanipulation.AddUnimplementedConstructorsOperation;
Discouraged access: The type AddUnimplementedConstructorsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 45)
import org.eclipse.jdt.internal.corext.codemanipulation.AddUnimplementedMethodsOperation;
Discouraged access: The type AddUnimplementedMethodsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 46)
import org.eclipse.jdt.internal.corext.codemanipulation.CodeGenerationSettings;
Discouraged access: The type CodeGenerationSettings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 47)
import org.eclipse.jdt.internal.corext.codemanipulation.StubUtility;
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 48)
import org.eclipse.jdt.internal.corext.dom.ASTNodes;
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 49)
import org.eclipse.jdt.internal.corext.util.CodeFormatterUtil;
Discouraged access: The type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 50)
import org.eclipse.jdt.internal.corext.util.JavaModelUtil;
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 51)
import org.eclipse.jdt.internal.corext.util.Strings;
Discouraged access: The type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 52)
import org.eclipse.jdt.internal.ui.preferences.JavaPreferencesSettings;
Discouraged access: The type JavaPreferencesSettings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 65)
String lineDelimiter = StubUtility.getLineDelimiterUsed(pack.getJavaProject());
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 65)
String lineDelimiter = StubUtility.getLineDelimiterUsed(pack.getJavaProject());
Discouraged access: The method getLineDelimiterUsed(IJavaProject) from the type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 86)
imports.addImport(JavaModelUtil.concatenateName(pack.getElementName(), typeName));
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 86)
imports.addImport(JavaModelUtil.concatenateName(pack.getElementName(), typeName));
Discouraged access: The method concatenateName(String, String) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 108)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 108)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 121)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 121)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 145)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, 0, lineDelimiter, type.getJavaProject());
Discouraged access: The type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 145)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, 0, lineDelimiter, type.getJavaProject());
Discouraged access: The method format(int, String, int, String, IJavaProject) from the type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 146)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 146)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The method trimLeadingTabsAndSpaces(String) from the type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 154)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 154)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 167)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 167)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The method getLineDelimiterUsed(IJavaProject) from the type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 205)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
27. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 205)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
28. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 220)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
29. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 220)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
30. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 226)
CodeGenerationSettings settings = JavaPreferencesSettings.getCodeGenerationSettings(type.getJavaProject());
Discouraged access: The type CodeGenerationSettings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
31. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 226)
CodeGenerationSettings settings = JavaPreferencesSettings.getCodeGenerationSettings(type.getJavaProject());
Discouraged access: The type JavaPreferencesSettings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
32. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 226)
CodeGenerationSettings settings = JavaPreferencesSettings.getCodeGenerationSettings(type.getJavaProject());
Discouraged access: The method getCodeGenerationSettings(IJavaProject) from the type JavaPreferencesSettings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
33. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 227)
settings.createComments = false;
Discouraged access: The field createComments from the type CodeGenerationSettings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
34. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 232)
final ITypeBinding binding = ASTNodes.getTypeBinding(unit, type);
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
35. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 232)
final ITypeBinding binding = ASTNodes.getTypeBinding(unit, type);
Discouraged access: The method getTypeBinding(CompilationUnit, IType) from the type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
36. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 235)
AddUnimplementedMethodsOperation operation = new AddUnimplementedMethodsOperation(unit, binding, null, -1, false, true, false);
Discouraged access: The type AddUnimplementedMethodsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
37. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 235)
AddUnimplementedMethodsOperation operation = new AddUnimplementedMethodsOperation(unit, binding, null, -1, false, true, false);
Discouraged access: The constructor AddUnimplementedMethodsOperation(CompilationUnit, ITypeBinding, IMethodBinding[], int, boolean, boolean, boolean) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
38. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 235)
AddUnimplementedMethodsOperation operation = new AddUnimplementedMethodsOperation(unit, binding, null, -1, false, true, false);
Discouraged access: The type AddUnimplementedMethodsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
39. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 236)
operation.setCreateComments(false);
Discouraged access: The method setCreateComments(boolean) from the type AddUnimplementedMethodsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
40. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 237)
operation.run(null);
Discouraged access: The method run(IProgressMonitor) from the type AddUnimplementedMethodsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
41. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 238)
createImports(imports, operation.getCreatedImports());
Discouraged access: The method getCreatedImports() from the type AddUnimplementedMethodsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
42. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 241)
AddUnimplementedConstructorsOperation operation = new AddUnimplementedConstructorsOperation(unit, binding, null, -1, false, true, false);
Discouraged access: The type AddUnimplementedConstructorsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
43. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 241)
AddUnimplementedConstructorsOperation operation = new AddUnimplementedConstructorsOperation(unit, binding, null, -1, false, true, false);
Discouraged access: The constructor AddUnimplementedConstructorsOperation(CompilationUnit, ITypeBinding, IMethodBinding[], int, boolean, boolean, boolean) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
44. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 241)
AddUnimplementedConstructorsOperation operation = new AddUnimplementedConstructorsOperation(unit, binding, null, -1, false, true, false);
Discouraged access: The type AddUnimplementedConstructorsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
45. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 242)
operation.setOmitSuper(true);
Discouraged access: The method setOmitSuper(boolean) from the type AddUnimplementedConstructorsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
46. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 243)
operation.setCreateComments(false);
Discouraged access: The method setCreateComments(boolean) from the type AddUnimplementedConstructorsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
47. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 244)
operation.run(null);
Discouraged access: The method run(IProgressMonitor) from the type AddUnimplementedConstructorsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
48. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 245)
createImports(imports, operation.getCreatedImports());
Discouraged access: The method getCreatedImports() from the type AddUnimplementedConstructorsOperation is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
49. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 248)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
50. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 248)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
51. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 289)
int importsEnd = ASTNodes.getExclusiveEnd((ASTNode) importsDecls.get(importsDecls.size() - 1));
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
52. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 289)
int importsEnd = ASTNodes.getExclusiveEnd((ASTNode) importsDecls.get(importsDecls.size() - 1));
Discouraged access: The method getExclusiveEnd(ASTNode) from the type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
53. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 303)
if (existingImports.isEmpty() || !existingImports.contains(ASTNodes.asString(decl))) {
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
54. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 303)
if (existingImports.isEmpty() || !existingImports.contains(ASTNodes.asString(decl))) {
Discouraged access: The method asString(ASTNode) from the type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
55. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 327)
res.add(ASTNodes.asString((ImportDeclaration) imports.get(i)));
Discouraged access: The type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
56. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 327)
res.add(ASTNodes.asString((ImportDeclaration) imports.get(i)));
Discouraged access: The method asString(ASTNode) from the type ASTNodes is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
57. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 537)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
58. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 537)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The method getLineDelimiterUsed(IJavaProject) from the type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
59. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 556)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
60. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 556)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
61. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 563)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, indent, lineDelimiter, type.getJavaProject());
Discouraged access: The type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
62. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 563)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, indent, lineDelimiter, type.getJavaProject());
Discouraged access: The method format(int, String, int, String, IJavaProject) from the type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
63. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 564)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
64. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 564)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The method trimLeadingTabsAndSpaces(String) from the type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
65. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 590)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
66. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 590)
String lineDelimiter = StubUtility.getLineDelimiterUsed(type.getJavaProject());
Discouraged access: The method getLineDelimiterUsed(IJavaProject) from the type StubUtility is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
67. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 608)
JavaModelUtil.reconcile(cu);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
68. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 608)
JavaModelUtil.reconcile(cu);
Discouraged access: The method reconcile(ICompilationUnit) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
69. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 615)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, 0, lineDelimiter, type.getJavaProject());
Discouraged access: The type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
70. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 615)
String formattedContent = CodeFormatterUtil.format(CodeFormatter.K_CLASS_BODY_DECLARATIONS, originalContent, 0, lineDelimiter, type.getJavaProject());
Discouraged access: The method format(int, String, int, String, IJavaProject) from the type CodeFormatterUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
71. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 616)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
72. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 616)
formattedContent = Strings.trimLeadingTabsAndSpaces(formattedContent);
Discouraged access: The method trimLeadingTabsAndSpaces(String) from the type Strings is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
73. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 693)
JavaModelUtil.applyEdit(fImportsRewrite.getCompilationUnit(), edit, needsSave, null);
Discouraged access: The type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
74. WARNING in /src/org/eclipse/e4/tools/ui/designer/utils/ASTHelper.java
 (at line 693)
JavaModelUtil.applyEdit(fImportsRewrite.getCompilationUnit(), edit, needsSave, null);
Discouraged access: The method applyEdit(ICompilationUnit, TextEdit, boolean, IProgressMonitor) from the type JavaModelUtil is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar

/src/org/eclipse/e4/tools/ui/designer/utils/ResourceUtiltities.java : 6 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/I20100523-2015/plugins/org.eclipse.e4.ui.workbench/@dot

/src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java : 33 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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 99)
fMainPage = new E4NewProjectWizardPage(
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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
32. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 600)
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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
33. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizard.java
 (at line 604)
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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.java
 (at line 17)
public class E4NewProjectWizardPage 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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.java
 (at line 19)
public E4NewProjectWizardPage(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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/E4NewProjectWizardPage.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.core_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 39)
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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 62)
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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/TemplateOperation.java
 (at line 62)
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/v20100523/plugins/org.eclipse.pde.ui_3.6.0.v20100519.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizard.java
 (at line 46)
IStructuredSelection selection = getSelection();
Discouraged access: The method getSelection() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java : 26 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 32)
import org.eclipse.jdt.internal.ui.dialogs.FilteredTypesSelectionDialog;
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 33)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.DialogField;
Discouraged access: The type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 34)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.IDialogFieldListener;
Discouraged access: The type IDialogFieldListener is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 35)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.IStringButtonAdapter;
Discouraged access: The type IStringButtonAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 36)
import org.eclipse.jdt.internal.ui.wizards.dialogfields.StringButtonDialogField;
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 77)
private StringButtonDialogField dataContextField;
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 135)
dataContextField.setEnabled(enabled);
Discouraged access: The method setEnabled(boolean) from the type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 236)
dataContextField.setText(((Class<?>) type).getName());
Discouraged access: The method setText(String) from the type StringDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 249)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog(
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 249)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog( getShell(), false, getWizard().getContainer(), scope, IJavaSearchConstants.CLASS);
Discouraged access: The constructor FilteredTypesSelectionDialog(Shell, boolean, IRunnableContext, IJavaSearchScope, int) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 249)
FilteredTypesSelectionDialog dialog = new FilteredTypesSelectionDialog(
Discouraged access: The type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 252)
dialog.setTitle("Choose a JavaBean");
Discouraged access: The method setTitle(String) from the type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 256)
if (dialog.open() == Window.OK) {
Discouraged access: The method open() from the type FilteredTypesSelectionDialog is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 272)
dataContextField.setEnabled(true);
Discouraged access: The method setEnabled(boolean) from the type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 275)
dataContextField.setEnabled(false);
Discouraged access: The method setEnabled(boolean) from the type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
16. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 278)
dataContextField.setEnabled(true);
Discouraged access: The method setEnabled(boolean) from the type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
17. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 410)
private class DataContextFieldAdapter implements IStringButtonAdapter,
Discouraged access: The type IStringButtonAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
18. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 411)
IDialogFieldListener {
Discouraged access: The type IDialogFieldListener is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
19. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 414)
public void changeControlPressed(DialogField field) {
Discouraged access: The type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
20. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 416)
if (type != null && field instanceof StringButtonDialogField) {
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
21. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 417)
((StringButtonDialogField) field).setText(type .getFullyQualifiedName());
Discouraged access: The method setText(String) from the type StringDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
22. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 417)
((StringButtonDialogField) field).setText(type
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
23. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 423)
public void dialogFieldChanged(DialogField field) {
Discouraged access: The type DialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
24. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 424)
if (field instanceof StringButtonDialogField) {
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
25. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 425)
validateNewType(((StringButtonDialogField) field).getText());
Discouraged access: The method getText() from the type StringDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
26. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/NewOptionsPartWizardPage.java
 (at line 425)
validateNewType(((StringButtonDialogField) field).getText());
Discouraged access: The type StringButtonDialogField is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java : 9 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 23)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 66)
return JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 66)
return JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The method get(String) from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 66)
return JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 66)
return JavaPluginImages.get(JavaPluginImages.IMG_FIELD_PUBLIC);
Discouraged access: The field IMG_FIELD_PUBLIC from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 68)
return JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 68)
return JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS);
Discouraged access: The method get(String) from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 68)
return JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/PDCTypeLabelProvider.java
 (at line 68)
return JavaPluginImages.get(JavaPluginImages.IMG_OBJS_CLASS);
Discouraged access: The field IMG_OBJS_CLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar

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

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardCreatePartPage.java
 (at line 30)
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardCreatePartPage.java
 (at line 89)
IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardCreatePartPage.java
 (at line 89)
IJavaHelpContextIds.NEW_CLASS_WIZARD_PAGE);
Discouraged access: The field NEW_CLASS_WIZARD_PAGE from the type IJavaHelpContextIds is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar

/src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java : 15 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 28)
import org.eclipse.jdt.internal.ui.JavaPlugin;
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
2. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 29)
import org.eclipse.jdt.internal.ui.JavaPluginImages;
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
3. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 30)
import org.eclipse.jdt.internal.ui.actions.WorkbenchRunnableAdapter;
Discouraged access: The type WorkbenchRunnableAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
4. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 31)
import org.eclipse.jdt.internal.ui.wizards.NewElementWizard;
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
5. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 38)
public abstract class WizardNewPart extends NewElementWizard {
Discouraged access: The type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
6. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 52)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
7. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 52)
setDefaultPageImageDescriptor(JavaPluginImages.DESC_WIZBAN_NEWCLASS);
Discouraged access: The field DESC_WIZBAN_NEWCLASS from the type JavaPluginImages is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
8. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 53)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
9. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 53)
setDialogSettings(JavaPlugin.getDefault().getDialogSettings());
Discouraged access: The method getDefault() from the type JavaPlugin is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
10. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 58)
boolean performFinish = super.performFinish();
Discouraged access: The method performFinish() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
11. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 74)
runnable = new WorkbenchRunnableAdapter(op, rule, true);
Discouraged access: The constructor WorkbenchRunnableAdapter(IWorkspaceRunnable, ISchedulingRule, boolean) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
12. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 74)
runnable = new WorkbenchRunnableAdapter(op, rule, true);
Discouraged access: The type WorkbenchRunnableAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
13. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 76)
runnable = new WorkbenchRunnableAdapter(op, getSchedulingRule());
Discouraged access: The constructor WorkbenchRunnableAdapter(IWorkspaceRunnable, ISchedulingRule) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
14. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 76)
runnable = new WorkbenchRunnableAdapter(op,
Discouraged access: The type WorkbenchRunnableAdapter is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar
15. WARNING in /src/org/eclipse/e4/tools/ui/designer/wizards/part/WizardNewPart.java
 (at line 77)
getSchedulingRule());
Discouraged access: The method getSchedulingRule() from the type NewElementWizard is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.jdt.ui_3.6.0.v20100520-0800.jar