Compiler log for org.eclipse.e4.xwt.vex_0.9.1.v20100627-1530 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 36

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/vex/VEXEditor.java : 9 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 236)
List paletteChildren = root.getChildren();
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 247)
List children = dynamicPaletteGroup.getChildren();
List is a raw type. References to generic type List<E> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 315)
List children = part.getChildren();
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 316)
for (Iterator iter = children.iterator(); iter.hasNext();) {
Iterator is a raw type. References to generic type Iterator<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 554)
Point location = caret.getLocation();
The value of the local variable location is not used
6. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 625)
public Object getAdapter(Class type) {
Class is a raw type. References to generic type Class<T> should be parameterized
7. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 765)
private String updateCacheContent(IDocument newInput) {
The method updateCacheContent(IDocument) from the type VEXEditor is never used locally
8. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 776)
public StructuredTextEditor getTextEditor() {
The method VEXEditor.getTextEditor() does not override the inherited method from XMLMultiPageEditorPart since it is private to a different package
9. WARNING in /src/org/eclipse/e4/xwt/vex/VEXEditor.java
 (at line 780)
private void modifyAllRelativeHandlerName(StructuredTextViewer textViewer, int offset, String inputHandler, String oldAttrValue) {
The method modifyAllRelativeHandlerName(StructuredTextViewer, int, String, String) from the type VEXEditor is never used locally

/src/org/eclipse/e4/xwt/vex/VEXTextEditorHelper.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/VEXTextEditorHelper.java
 (at line 68)
String regionType = completionRegion.getType();
The value of the local variable regionType is not used
2. WARNING in /src/org/eclipse/e4/xwt/vex/VEXTextEditorHelper.java
 (at line 82)
String regionType = completionRegion.getType();
The value of the local variable regionType is not used
3. WARNING in /src/org/eclipse/e4/xwt/vex/VEXTextEditorHelper.java
 (at line 84)
IStructuredDocumentRegion sdRegion = ContentAssistUtils.getStructuredDocumentRegion(textViewer, documentPosition);
The value of the local variable sdRegion is not used

/src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java : 9 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 42)
private static final class ProposalComparator implements Comparator {
Comparator is a raw type. References to generic type Comparator<T> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 48)
private static final Comparator fgProposalComparator = new ProposalComparator();
Comparator is a raw type. References to generic type Comparator<T> should be parameterized
3. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 75)
List matches = new ArrayList();
List is a raw type. References to generic type List<E> should be parameterized
4. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 75)
List matches = new ArrayList();
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized
5. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 84)
matches.add(createProposal(template, context, (IRegion) region, getRelevance(template, prefix)));
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/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 88)
Collections.sort(matches, fgProposalComparator);
Type safety: Unchecked invocation sort(List, Comparator) of the generic method sort(List<T>, Comparator<? super T>) of type Collections
7. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 88)
Collections.sort(matches, fgProposalComparator);
Type safety: The expression of type List needs unchecked conversion to conform to List<Object>
8. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 88)
Collections.sort(matches, fgProposalComparator);
Type safety: The expression of type Comparator needs unchecked conversion to conform to Comparator<? super Object>
9. WARNING in /src/org/eclipse/e4/xwt/vex/contentassist/VEXTemplateCompletionProcessor.java
 (at line 90)
return (ICompletionProposal[]) matches.toArray(new ICompletionProposal[matches.size()]);
Type safety: The method toArray(Object[]) belongs to the raw type List. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/vex/palette/customize/CustomizeComponentFactory.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/palette/customize/CustomizeComponentFactory.java
 (at line 200)
List paletteChildren = root.getChildren();
List is a raw type. References to generic type List<E> should be parameterized
2. WARNING in /src/org/eclipse/e4/xwt/vex/palette/customize/CustomizeComponentFactory.java
 (at line 211)
List children = customizePaletteGroup.getChildren();
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/vex/palette/customize/actions/AddCustomizePaletteAction.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/palette/customize/actions/AddCustomizePaletteAction.java
 (at line 26)
private PaletteViewer paletteViewer;
The value of the field AddCustomizePaletteAction.paletteViewer is not used

/src/org/eclipse/e4/xwt/vex/palette/customize/actions/ModifyCustomizeComponentAction.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/palette/customize/actions/ModifyCustomizeComponentAction.java
 (at line 13)
import org.eclipse.e4.xwt.vex.palette.customize.CustomizeComponentFactory;
The import org.eclipse.e4.xwt.vex.palette.customize.CustomizeComponentFactory is never used
2. WARNING in /src/org/eclipse/e4/xwt/vex/palette/customize/actions/ModifyCustomizeComponentAction.java
 (at line 22)
private PaletteViewer paletteViewer;
The value of the field ModifyCustomizeComponentAction.paletteViewer is not used

/src/org/eclipse/e4/xwt/vex/palette/part/ToolDrawerEditPart.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/palette/part/ToolDrawerEditPart.java
 (at line 37)
IFigure buildTooltip() {
The method new ToolDrawerFigure(){}.buildTooltip() does not override the inherited method from DrawerFigure since it is private to a different package
2. WARNING in /src/org/eclipse/e4/xwt/vex/palette/part/ToolDrawerEditPart.java
 (at line 37)
IFigure buildTooltip() {
The method buildTooltip() from the type new ToolDrawerFigure(){} is never used locally

/src/org/eclipse/e4/xwt/vex/palette/part/ToolDrawerFigure.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/palette/part/ToolDrawerFigure.java
 (at line 35)
private int getNewValue(int oldValue, int childLevel) {
The method getNewValue(int, int) from the type ToolDrawerFigure is never used locally

/src/org/eclipse/e4/xwt/vex/palette/part/ToolTransferDragSourceListener.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/palette/part/ToolTransferDragSourceListener.java
 (at line 69)
List selection = getViewer().getSelectedEditParts();
List is a raw type. References to generic type List<E> should be parameterized

/src/org/eclipse/e4/xwt/vex/swt/CustomSashForm.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/swt/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/vex/swt/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/vex/swt/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/vex/swt/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/vex/swt/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/vex/swt/Win32ImageCapture.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/e4/xwt/vex/swt/Win32ImageCapture.java
 (at line 13)
import java.lang.reflect.Field;
The import java.lang.reflect.Field is never used

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings