Compiler log for org.eclipse.e4.xwt.tools.ui.designer.core_0.9.1.v20101021 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 32

errors others warnings forbidden warnings discouraged warnings

ERRORS

top others warnings forbidden warnings discouraged warnings

OTHER WARNINGS

top errors forbidden warnings discouraged warnings

/src/org/eclipse/e4/xwt/tools/ui/designer/core/ceditor/ConfigureDesigner.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/ceditor/ConfigureDesigner.java
 (at line 342)
public Object getAdapter(Class adapter) {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/ceditor/MultiSourceEditor.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/ceditor/MultiSourceEditor.java
 (at line 111)
public Object getAdapter(Class adapter) {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 73)
public boolean enabled; // Whether this sashinfo is enabled (i.e. if
The value of the field CustomSashForm.SashInfo.enabled is not used
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 112)
protected List customSashFormListeners = null;
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 910)
customSashFormListeners = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 911)
customSashFormListeners.add(listener);
Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/component/CustomSashForm.java
 (at line 933)
for (Iterator listenerItr = customSashFormListeners.iterator(); listenerItr.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/Designer.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/Designer.java
 (at line 109)
@SuppressWarnings("restriction")
Unnecessary @SuppressWarnings("restriction")
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/Designer.java
 (at line 829)
public Object getAdapter(Class adapter) {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java : 8 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 66)
private List getSelectedNodes() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 75)
List selectedNodes = getSelectedNodes();
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 139)
List newSelection = new ArrayList();
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 139)
List newSelection = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 150)
newSelection.add(textNode);
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/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 155)
List selectedNodes = getSelectedNodes();
List is a raw type. References to generic type List<E> should be parameterized
7. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 156)
if (selectedNodes != null && selectedNodes.containsAll(newSelection)
Type safety: The method containsAll(Collection) belongs to the raw type List. References to generic type List<E> should be parameterized
8. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/SourceSelectionProvider.java
 (at line 157)
&& newSelection.containsAll(selectedNodes)) {
Type safety: The method containsAll(Collection) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/dnd/palette/PaletteDropAdapter.java
 (at line 63)
Runnable dropRunnable = new Runnable() {
The value of the local variable dropRunnable is not used

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/DesignerOutlinePage.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/DesignerOutlinePage.java
 (at line 83)
protected List getModelChildren() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/DesignerOutlinePage.java
 (at line 84)
ArrayList children = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/DesignerOutlinePage.java
 (at line 84)
ArrayList children = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/DesignerOutlinePage.java
 (at line 85)
children.add(contents);
Type safety: The method add(Object) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/TreeItemEditPart.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/TreeItemEditPart.java
 (at line 37)
protected List getModelChildren() {
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/TreeItemEditPart.java
 (at line 41)
return new ArrayList(Arrays.asList(children));
Type safety: The constructor ArrayList(Collection) belongs to the raw type ArrayList. References to generic type ArrayList<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/editor/outline/TreeItemEditPart.java
 (at line 41)
return new ArrayList(Arrays.asList(children));
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java
 (at line 45)
Iterator itr = constraints.keySet().iterator();
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java
 (at line 74)
Iterator children = f.getChildren().iterator();
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/layouts/XYFlowLayout.java
 (at line 177)
List children = containerFigure.getChildren();
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/AbstractDiagramEditPart.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/AbstractDiagramEditPart.java
 (at line 47)
public Object getAdapter(Class key) {
Class is a raw type. References to generic type Class<T> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/VisualEditPart.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/parts/VisualEditPart.java
 (at line 128)
for (Iterator iterator = getChildren().iterator(); iterator
Iterator is a raw type. References to generic type Iterator<E> should be parameterized

/src/org/eclipse/e4/xwt/tools/ui/designer/core/util/image/ImageCollector.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/util/image/ImageCollector.java
 (at line 120)
private static void saveImage(Image image, String path) {
The method saveImage(Image, String) from the type ImageCollector is never used locally

/src/org/eclipse/e4/xwt/tools/ui/designer/core/util/swt/WidgetLocator.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/tools/ui/designer/core/util/swt/WidgetLocator.java
 (at line 23)
import org.eclipse.swt.widgets.Decorations;
The import org.eclipse.swt.widgets.Decorations is never used

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings