Compiler log for org.eclipse.e4.ui.workbench_0.9.1.v20100521-1400 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 86

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/workbench/modeling/EObjModelHandler.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/modeling/EObjModelHandler.java
 (at line 24)
public Object getAdapter(Object adaptableObject, Class adapterType) {
Class is a raw type. References to generic type Class<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/modeling/EObjModelHandler.java
 (at line 28)
public Class[] getAdapterList() {
Class is a raw type. References to generic type Class<T> should be parameterized
3. WARNING in /src/org/eclipse/e4/workbench/modeling/EObjModelHandler.java
 (at line 60)
for (Iterator iterator = features.iterator(); iterator.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/workbench/modeling/ICEAdapter.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/modeling/ICEAdapter.java
 (at line 25)
public Object getAdapter(Object adaptableObject, Class adapterType) {
Class is a raw type. References to generic type Class<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/modeling/ICEAdapter.java
 (at line 29)
public Class[] getAdapterList() {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java
 (at line 220)
List<MUIElement> children = ((MElementContainer) me).getChildren();
Type safety: The expression of type List needs unchecked conversion to conform to List<MUIElement>
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java
 (at line 220)
List<MUIElement> children = ((MElementContainer) me).getChildren();
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java
 (at line 251)
final Class[] interfaces = contextModel.getClass().getInterfaces();
Class is a raw type. References to generic type Class<T> should be parameterized
4. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java
 (at line 252)
for (Class intf : interfaces) {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/workbench/ui/internal/EMFDeltaEntrySet.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/EMFDeltaEntrySet.java
 (at line 35)
EMap map = (EMap) ((EObject) getObject()).eGet(feature);
EMap is a raw type. References to generic type EMap<K,V> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/EMFDeltaEntrySet.java
 (at line 35)
EMap map = (EMap) ((EObject) getObject()).eGet(feature);
EMap is a raw type. References to generic type EMap<K,V> should be parameterized
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/EMFDeltaEntrySet.java
 (at line 36)
map.put(key, value);
Type safety: The method put(Object, Object) belongs to the raw type EMap. References to generic type EMap<K,V> should be parameterized

/src/org/eclipse/e4/workbench/ui/internal/ModelExtensionProcessor.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelExtensionProcessor.java
 (at line 142)
Class pc = bundle.loadClass(snippet.getProcessor());
Class is a raw type. References to generic type Class<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelExtensionProcessor.java
 (at line 168)
((EList) oldValue).add(elements[i]);
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/workbench/ui/internal/ModelExtensionProcessor.java
 (at line 168)
((EList) oldValue).add(elements[i]);
EList is a raw type. References to generic type EList<E> should be parameterized

/src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java : 7 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java
 (at line 54)
private boolean match(MUIElement element, String id, Class clazz, List<String> tagsToMatch) {
Class is a raw type. References to generic type Class<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java
 (at line 76)
elements.add((T) searchRoot);
Type safety: Unchecked cast from MUIElement to T
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java
 (at line 81)
MElementContainer<MUIElement> container = (MElementContainer<MUIElement>) searchRoot;
Type safety: Unchecked cast from MUIElement to MElementContainer<MUIElement>
4. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java
 (at line 139)
List elements = findElements(searchRoot, id, null, null);
List is a raw type. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java
 (at line 198)
((MElementContainer<MUIElement>) parent).setSelectedElement(element);
Type safety: Unchecked cast from MUIElement to MElementContainer<MUIElement>
6. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java
 (at line 446)
MGenericTile<MUIElement> curTile = (MGenericTile<MUIElement>) insertRoot;
Type safety: Unchecked cast from MUIElement to MGenericTile<MUIElement>
7. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ModelServiceImpl.java
 (at line 513)
MElementContainer<MUIElement> windowParent = (MElementContainer<MUIElement>) curParent;
Type safety: Unchecked cast from MUIElement to MElementContainer<MUIElement>

/src/org/eclipse/e4/workbench/ui/internal/Parameter.java : 12 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 163)
public Map getParameterValues() {
Map is a raw type. References to generic type Map<K,V> should be parameterized

/src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java : 6 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java
 (at line 98)
public void setRootContainer(@Named(EPartService.PART_SERVICE_ROOT) MElementContainer root) {
MElementContainer is a raw type. References to generic type MElementContainer<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java
 (at line 99)
rootContainer = root;
Type safety: The expression of type MElementContainer needs unchecked conversion to conform to MElementContainer<MUIElement>
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java
 (at line 164)
rootContainer = (MElementContainer<MUIElement>) childContext .get(MWindow.class.getName());
Type safety: Unchecked cast from Object to MElementContainer<MUIElement>
4. WARNING in /src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java
 (at line 488)
((MElementContainer<MPart>) element).getChildren().add(providedPart);
Type safety: Unchecked cast from Object to MElementContainer<MPart>
5. WARNING in /src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java
 (at line 508)
((List) lastContainer.getChildren()).add(part);
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/workbench/ui/internal/PartServiceImpl.java
 (at line 508)
((List) lastContainer.getChildren()).add(part);
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java
 (at line 216)
long restoreLastModified = getLastStoreDatetime();
Dead code

/src/org/eclipse/e4/workbench/ui/internal/WorkbenchLogger.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/WorkbenchLogger.java
 (at line 57)
ArrayList childlist = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/WorkbenchLogger.java
 (at line 57)
ArrayList childlist = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/WorkbenchLogger.java
 (at line 64)
childlist.add(getLog(coreStatus));
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/workbench/ui/internal/WorkbenchLogger.java
 (at line 71)
childlist.add(getLog(children[i]));
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/workbench/ui/internal/WorkbenchLogger.java
 (at line 76)
: childlist.toArray(new FrameworkLogEntry[childlist.size()]));
Type safety: The method toArray(Object[]) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized

/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java
 (at line 748)
EMap map = (EMap) object.eGet(feature);
EMap is a raw type. References to generic type EMap<K,V> should be parameterized
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java
 (at line 748)
EMap map = (EMap) object.eGet(feature);
EMap is a raw type. References to generic type EMap<K,V> should be parameterized
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java
 (at line 755)
map.put(keyValue.getAttribute(ENTRY_ATTVALUE_KEY), keyValue .getAttribute(ENTRY_ATTVALUE_VALUE));
Type safety: The method put(Object, Object) belongs to the raw type EMap. References to generic type EMap<K,V> 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/workbench/ui/internal/E4CommandProcessor.java : 16 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 27)
import org.eclipse.e4.ui.bindings.internal.BindingTable;
Discouraged access: The type BindingTable 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.bindings/@dot
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 28)
import org.eclipse.e4.ui.bindings.internal.BindingTableManager;
Discouraged access: The type BindingTableManager 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.bindings/@dot
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 74)
final BindingTableManager bindingTables = (BindingTableManager) ContextInjectionFactory
Discouraged access: The type BindingTableManager 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.bindings/@dot
4. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 74)
final BindingTableManager bindingTables = (BindingTableManager) ContextInjectionFactory
Discouraged access: The type BindingTableManager 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.bindings/@dot
5. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 75)
.make(BindingTableManager.class, context);
Discouraged access: The type BindingTableManager 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.bindings/@dot
6. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 76)
context.set(BindingTableManager.class.getName(), bindingTables);
Discouraged access: The type BindingTableManager 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.bindings/@dot
7. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 107)
BindingTable table = new BindingTable(bindingContext);
Discouraged access: The type BindingTable 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.bindings/@dot
8. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 107)
BindingTable table = new BindingTable(bindingContext);
Discouraged access: The constructor BindingTable(Context) 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.bindings/@dot
9. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 107)
BindingTable table = new BindingTable(bindingContext);
Discouraged access: The type BindingTable 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.bindings/@dot
10. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 108)
bindingTables.addTable(table);
Discouraged access: The method addTable(BindingTable) from the type BindingTableManager 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.bindings/@dot
11. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 115)
BindingTableManager manager, MBindingTable bt) {
Discouraged access: The type BindingTableManager 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.bindings/@dot
12. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 116)
BindingTable table = new BindingTable(bindingContext);
Discouraged access: The type BindingTable 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.bindings/@dot
13. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 116)
BindingTable table = new BindingTable(bindingContext);
Discouraged access: The constructor BindingTable(Context) 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.bindings/@dot
14. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 116)
BindingTable table = new BindingTable(bindingContext);
Discouraged access: The type BindingTable 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.bindings/@dot
15. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 117)
manager.addTable(table);
Discouraged access: The method addTable(BindingTable) from the type BindingTableManager 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.bindings/@dot
16. WARNING in /src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java
 (at line 138)
table.addBinding(keyBinding);
Discouraged access: The method addBinding(Binding) from the type BindingTable 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.bindings/@dot

/src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java : 18 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 25)
public class JobExecutor extends AbstractExecutor implements
Discouraged access: The type AbstractExecutor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 28)
public IFuture schedule(final IProgressRunnable runnable, String name,
Discouraged access: The type IFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 28)
public IFuture schedule(final IProgressRunnable runnable, String name,
Discouraged access: The type IProgressRunnable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
4. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 30)
final SingleOperationFuture future = new SingleOperationFuture();
Discouraged access: The type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
5. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 30)
final SingleOperationFuture future = new SingleOperationFuture();
Discouraged access: The constructor SingleOperationFuture() is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
6. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 30)
final SingleOperationFuture future = new SingleOperationFuture();
Discouraged access: The type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
7. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 33)
if (future.isCanceled())
Discouraged access: The method isCanceled() from the type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
8. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 34)
return future.getStatus();
Discouraged access: The method getStatus() from the type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
9. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 36)
((FutureProgressMonitor) future.getProgressMonitor()) .setChildProgressMonitor(monitor);
Discouraged access: The method setChildProgressMonitor(IProgressMonitor) from the type FutureProgressMonitor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
10. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 36)
((FutureProgressMonitor) future.getProgressMonitor())
Discouraged access: The type FutureProgressMonitor is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
11. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 36)
((FutureProgressMonitor) future.getProgressMonitor())
Discouraged access: The method getProgressMonitor() from the type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
12. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 39)
future.runWithProgress(runnable);
Discouraged access: The method runWithProgress(IProgressRunnable) from the type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
13. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 40)
return future.getStatus();
Discouraged access: The method getStatus() from the type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
14. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 47)
protected AbstractFuture createFuture(IProgressMonitor progressMonitor) {
Discouraged access: The type AbstractFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
15. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 48)
return new SingleOperationFuture(progressMonitor);
Discouraged access: The constructor SingleOperationFuture(IProgressMonitor) is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
16. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 48)
return new SingleOperationFuture(progressMonitor);
Discouraged access: The type SingleOperationFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
17. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 52)
public IFuture execute(IProgressRunnable runnable, IProgressMonitor monitor) {
Discouraged access: The type IFuture is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar
18. WARNING in /src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java
 (at line 52)
public IFuture execute(IProgressRunnable runnable, IProgressMonitor monitor) {
Discouraged access: The type IProgressRunnable is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.concurrent_1.0.100.v20100503.jar

/src/org/eclipse/e4/workbench/ui/internal/Parameter.java : 12 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 12)
import org.eclipse.e4.ui.bindings.internal.Util;
Discouraged access: The type Util 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.bindings/@dot
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 135)
if (!Util.equals(id, parameter.id)) {
Discouraged access: The type Util 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.bindings/@dot
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 135)
if (!Util.equals(id, parameter.id)) {
Discouraged access: The method equals(Object, Object) from the type Util 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.bindings/@dot
4. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 138)
if (!Util.equals(name, parameter.name)) {
Discouraged access: The type Util 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.bindings/@dot
5. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 138)
if (!Util.equals(name, parameter.name)) {
Discouraged access: The method equals(Object, Object) from the type Util 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.bindings/@dot
6. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 141)
if (!Util.equals(values, parameter.values)) {
Discouraged access: The type Util 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.bindings/@dot
7. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 141)
if (!Util.equals(values, parameter.values)) {
Discouraged access: The method equals(Object, Object) from the type Util 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.bindings/@dot
8. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 145)
return Util.equals(optional, parameter.optional);
Discouraged access: The type Util 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.bindings/@dot
9. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 145)
return Util.equals(optional, parameter.optional);
Discouraged access: The method equals(Object, Object) from the type Util 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.bindings/@dot
10. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 171)
hashCode = HASH_INITIAL * HASH_FACTOR + Util.hashCode(id);
Discouraged access: The type Util 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.bindings/@dot
11. WARNING in /src/org/eclipse/e4/workbench/ui/internal/Parameter.java
 (at line 171)
hashCode = HASH_INITIAL * HASH_FACTOR + Util.hashCode(id);
Discouraged access: The method hashCode(Object) from the type Util 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.bindings/@dot

/src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java : 4 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java
 (at line 26)
import org.eclipse.core.internal.runtime.PlatformURLPluginConnection;
Discouraged access: The type PlatformURLPluginConnection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.common_3.6.0.v20100503.jar
2. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java
 (at line 256)
Object[] obj = PlatformURLPluginConnection.parse(url.getFile().trim(), url);
Discouraged access: The type PlatformURLPluginConnection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.common_3.6.0.v20100503.jar
3. WARNING in /src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java
 (at line 256)
Object[] obj = PlatformURLPluginConnection.parse(url.getFile().trim(), url);
Discouraged access: The method parse(String, URL) from the type PlatformURLPluginConnection is not accessible due to restriction on classpath entry /opt/public/eclipse/e4/build/e4/downloads/drops/4.0.0/targets/v20100523/plugins/org.eclipse.equinox.common_3.6.0.v20100503.jar