Compiler log for org.eclipse.pde.ui_3.15.400.v20241111-2035 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 59, INFOS: 0

errors others warnings infos forbidden warnings discouraged warnings

ERRORS

top others warnings infos forbidden warnings discouraged warnings

OTHER WARNINGS

top errors infos forbidden warnings discouraged warnings

/src/org/eclipse/pde/internal/ui/correction/AddDefaultExecutionEnvironmentResolution.java : 3 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/correction/AddDefaultExecutionEnvironmentResolution.java
 (at line 35)
IManifestHeader header = model.getBundle().getManifestHeader(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/correction/AddDefaultExecutionEnvironmentResolution.java
 (at line 38)
model.getBundle().setHeader(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, ""); //$NON-NLS-1$
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
3. WARNING in /src/org/eclipse/pde/internal/ui/correction/AddDefaultExecutionEnvironmentResolution.java
 (at line 42)
header = model.getBundle().getManifestHeader(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/correction/RemoveUnknownExecEnvironments.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/correction/RemoveUnknownExecEnvironments.java
 (at line 34)
IManifestHeader header = model.getBundle().getManifestHeader(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/correction/UpdateExecutionEnvironment.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/correction/UpdateExecutionEnvironment.java
 (at line 46)
bundle.setHeader(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, bree);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/editor/contentassist/ManifestContentAssistProcessor.java : 6 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/contentassist/ManifestContentAssistProcessor.java
 (at line 70)
private static final String[] fHeader = { ICoreConstants.AUTOMATIC_MODULE_NAME, Constants.BUNDLE_ACTIVATIONPOLICY, Constants.BUNDLE_ACTIVATOR, Constants.BUNDLE_CATEGORY, Constants.BUNDLE_CLASSPATH, Constants.BUNDLE_CONTACTADDRESS, Constants.BUNDLE_COPYRIGHT, Constants.BUNDLE_DESCRIPTION, Constants.BUNDLE_DOCURL, Constants.BUNDLE_LOCALIZATION, Constants.BUNDLE_MANIFESTVERSION, Constants.BUNDLE_NAME, Constants.BUNDLE_NATIVECODE, Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, Constants.BUNDLE_SYMBOLICNAME, Constants.BUNDLE_UPDATELOCATION, Constants.BUNDLE_VENDOR, Constants.BUNDLE_VERSION, Constants.DYNAMICIMPORT_PACKAGE, ICoreConstants.ECLIPSE_BUDDY_POLICY, ICoreConstants.ECLIPSE_BUNDLE_SHAPE, ICoreConstants.ECLIPSE_EXPORT_EXTERNAL_ANNOTATIONS, ICoreConstants.ECLIPSE_GENERIC_CAPABILITY, ICoreConstants.ECLIPSE_GENERIC_REQUIRED, ICoreConstants.ECLIPSE_LAZYSTART,
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/editor/contentassist/ManifestContentAssistProcessor.java
 (at line 178)
return header.equalsIgnoreCase(Constants.IMPORT_PACKAGE) || header.equalsIgnoreCase(Constants.EXPORT_PACKAGE) || header.equalsIgnoreCase(Constants.REQUIRE_BUNDLE) || header.equalsIgnoreCase(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
3. WARNING in /src/org/eclipse/pde/internal/ui/editor/contentassist/ManifestContentAssistProcessor.java
 (at line 239)
if (value.regionMatches(true, 0, Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, 0, Math.min(length, Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT.length())))
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
4. WARNING in /src/org/eclipse/pde/internal/ui/editor/contentassist/ManifestContentAssistProcessor.java
 (at line 239)
if (value.regionMatches(true, 0, Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, 0, Math.min(length, Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT.length())))
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
5. WARNING in /src/org/eclipse/pde/internal/ui/editor/contentassist/ManifestContentAssistProcessor.java
 (at line 240)
return handleRequiredExecEnv(value.substring(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT.length() + 1), offset);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
6. WARNING in /src/org/eclipse/pde/internal/ui/editor/contentassist/ManifestContentAssistProcessor.java
 (at line 604)
HashSet<String> set = (HashSet<String>) fHeaders.get(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/editor/plugin/BundleSourcePage.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/BundleSourcePage.java
 (at line 409)
return Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT;
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/BundleSourcePage.java
 (at line 449)
return getSpecificRange(ee.getModel(), Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, ee.getName());
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/editor/plugin/ExecutionEnvironmentSection.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ExecutionEnvironmentSection.java
 (at line 385)
} else if (Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT.equals(e.getChangedProperty())) {
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/editor/plugin/ExportPackageSection.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ExportPackageSection.java
 (at line 357)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The type ShowInPackageViewAction is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ExportPackageSection.java
 (at line 357)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The type ShowInPackageViewAction is deprecated
3. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ExportPackageSection.java
 (at line 357)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The constructor ShowInPackageViewAction(IWorkbenchSite) is deprecated
4. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ExportPackageSection.java
 (at line 358)
action.run(frag);
The method run(IJavaElement) from the type ShowInPackageViewAction is deprecated

/src/org/eclipse/pde/internal/ui/editor/plugin/FormFilteredTree.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/FormFilteredTree.java
 (at line 38)
super(parent, treeStyle, filter, true);
The constructor FilteredTree(Composite, int, PatternFilter, boolean) is deprecated

/src/org/eclipse/pde/internal/ui/editor/plugin/ImportPackageSection.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ImportPackageSection.java
 (at line 411)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The type ShowInPackageViewAction is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ImportPackageSection.java
 (at line 411)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The type ShowInPackageViewAction is deprecated
3. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ImportPackageSection.java
 (at line 411)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The constructor ShowInPackageViewAction(IWorkbenchSite) is deprecated
4. WARNING in /src/org/eclipse/pde/internal/ui/editor/plugin/ImportPackageSection.java
 (at line 412)
action.run(frag);
The method run(IJavaElement) from the type ShowInPackageViewAction is deprecated

/src/org/eclipse/pde/internal/ui/editor/text/ManifestConfiguration.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/ManifestConfiguration.java
 (at line 82)
rule.addWord(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, fToken);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/editor/text/ManifestTextHover.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/ManifestTextHover.java
 (at line 48)
public String getHoverInfo(ITextViewer textViewer, IRegion hoverRegion) {
The method ManifestTextHover.getHoverInfo(ITextViewer, IRegion) overrides a deprecated method from ITextHover

/src/org/eclipse/pde/internal/ui/editor/text/MultilineDamagerRepairer.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/MultilineDamagerRepairer.java
 (at line 26)
super(scanner, defaultTextAttribute);
The constructor DefaultDamagerRepairer(ITokenScanner, TextAttribute) is deprecated

/src/org/eclipse/pde/internal/ui/editor/text/PackageHyperlink.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/PackageHyperlink.java
 (at line 46)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The type ShowInPackageViewAction is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/PackageHyperlink.java
 (at line 46)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The type ShowInPackageViewAction is deprecated
3. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/PackageHyperlink.java
 (at line 46)
ShowInPackageViewAction action = new ShowInPackageViewAction(part.getSite());
The constructor ShowInPackageViewAction(IWorkbenchSite) is deprecated
4. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/PackageHyperlink.java
 (at line 47)
action.run(frag);
The method run(IJavaElement) from the type ShowInPackageViewAction is deprecated

/src/org/eclipse/pde/internal/ui/editor/text/PluginXMLTextHover.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/PluginXMLTextHover.java
 (at line 49)
public String getHoverInfo(ITextViewer textViewer, IRegion hoverRegion) {
The method PluginXMLTextHover.getHoverInfo(ITextViewer, IRegion) overrides a deprecated method from ITextHover

/src/org/eclipse/pde/internal/ui/editor/text/SourceInformationProvider.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/SourceInformationProvider.java
 (at line 105)
public String getInformation(ITextViewer textViewer, IRegion subject) {
The method SourceInformationProvider.getInformation(ITextViewer, IRegion) overrides a deprecated method from IInformationProvider
2. WARNING in /src/org/eclipse/pde/internal/ui/editor/text/SourceInformationProvider.java
 (at line 107)
String s = fImplementation.getHoverInfo(textViewer, subject);
The method getHoverInfo(ITextViewer, IRegion) from the type ITextHover is deprecated

/src/org/eclipse/pde/internal/ui/search/ShowDescriptionAction.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/search/ShowDescriptionAction.java
 (at line 237)
URL url = file.toURL();
The method toURL() from the type File is deprecated

/src/org/eclipse/pde/internal/ui/search/dependencies/CalculateUsesOperation.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/search/dependencies/CalculateUsesOperation.java
 (at line 111)
findReferences(fragment.getClassFiles(), pkgs, iterationMonitor.split(1), true);
The method getClassFiles() from the type IPackageFragment is deprecated

/src/org/eclipse/pde/internal/ui/search/dependencies/PackageFinder.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/search/dependencies/PackageFinder.java
 (at line 259)
IClassFile[] files = frag.getClassFiles();
The method getClassFiles() from the type IPackageFragment is deprecated

/src/org/eclipse/pde/internal/ui/shared/CachedCheckboxTreeViewer.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/shared/CachedCheckboxTreeViewer.java
 (at line 187)
public void setAllChecked(boolean state) {
The method CachedCheckboxTreeViewer.setAllChecked(boolean) overrides a deprecated method from CheckboxTreeViewer
2. WARNING in /src/org/eclipse/pde/internal/ui/shared/CachedCheckboxTreeViewer.java
 (at line 188)
super.setAllChecked(state);
The method setAllChecked(boolean) from the type CheckboxTreeViewer is deprecated

/src/org/eclipse/pde/internal/ui/shared/FilteredCheckboxTree.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/shared/FilteredCheckboxTree.java
 (at line 71)
super(parent, true);
The constructor FilteredTree(Composite, boolean) is deprecated

/src/org/eclipse/pde/internal/ui/shared/target/ArgumentsFromContainerSelectionDialog.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/shared/target/ArgumentsFromContainerSelectionDialog.java
 (at line 160)
fTree.setAllChecked(true);
The method setAllChecked(boolean) from the type CheckboxTreeViewer is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/shared/target/ArgumentsFromContainerSelectionDialog.java
 (at line 170)
fTree.setAllChecked(false);
The method setAllChecked(boolean) from the type CheckboxTreeViewer is deprecated

/src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java : 9 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 52)
ImageData id = overlays[i].getImageData();
The method getImageData() from the type ImageDescriptor is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 53)
drawImage(id, x, getSize().y - id.height);
The method drawImage(ImageData, int, int) from the type CompositeImageDescriptor is deprecated
3. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 66)
ImageData id = overlays[i].getImageData();
The method getImageData() from the type ImageDescriptor is deprecated
4. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 68)
drawImage(id, x, getSize().y - id.height);
The method drawImage(ImageData, int, int) from the type CompositeImageDescriptor is deprecated
5. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 78)
drawImage(base, 0, 0);
The method drawImage(ImageData, int, int) from the type CompositeImageDescriptor is deprecated
6. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 101)
ImageData id = overlays[i].getImageData();
The method getImageData() from the type ImageDescriptor is deprecated
7. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 102)
drawImage(id, x, 0);
The method drawImage(ImageData, int, int) from the type CompositeImageDescriptor is deprecated
8. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 115)
ImageData id = overlays[i].getImageData();
The method getImageData() from the type ImageDescriptor is deprecated
9. WARNING in /src/org/eclipse/pde/internal/ui/util/AbstractOverlayIcon.java
 (at line 117)
drawImage(id, x, 0);
The method drawImage(ImageData, int, int) from the type CompositeImageDescriptor is deprecated

/src/org/eclipse/pde/internal/ui/util/OverlayIcon.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/util/OverlayIcon.java
 (at line 39)
return fBase.getImageData();
The method getImageData() from the type ImageDescriptor is deprecated

/src/org/eclipse/pde/internal/ui/util/PluginWorkingSet.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/util/PluginWorkingSet.java
 (at line 115)
super(parent, treeStyle, filter, true);
The constructor FilteredTree(Composite, int, PatternFilter, boolean) is deprecated

/src/org/eclipse/pde/internal/ui/util/SharedLabelProvider.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/util/SharedLabelProvider.java
 (at line 239)
ImageDescriptor desc = ImageDescriptor.createFromImageData(new ImageData(stream));
The method createFromImageData(ImageData) from the type ImageDescriptor is deprecated

/src/org/eclipse/pde/internal/ui/views/dependencies/HistoryAction.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/views/dependencies/HistoryAction.java
 (at line 50)
public ImageData getImageData() {
The method HistoryAction.ImageImageDescriptor.getImageData() overrides a deprecated method from ImageDescriptor

/src/org/eclipse/pde/internal/ui/views/features/viewer/RootElementsFilteredTree.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/views/features/viewer/RootElementsFilteredTree.java
 (at line 29)
super(parent, treeStyle, new RootElementsPatternFilter(), true);
The constructor FilteredTree(Composite, int, PatternFilter, boolean) is deprecated

/src/org/eclipse/pde/internal/ui/views/target/StateViewPage.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/views/target/StateViewPage.java
 (at line 293)
fFilteredTree = new FilteredTree(fComposite, SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL | SWT.SINGLE, new PatternFilter(), true) { @Override protected void createControl(Composite parent, int treeStyle) { super.createControl(parent, treeStyle); // add 2px margin around filter text FormLayout layout = new FormLayout(); layout.marginHeight = 0; layout.marginWidth = 0; setLayout(layout); FormData data = new FormData(); data.left = new FormAttachment(0, 0); data.right = new FormAttachment(100, 0); data.bottom = new FormAttachment(100, 0); if (showFilterControls) { FormData filterData = new FormData(); filterData.top = new FormAttachment(0, 2); filterData.left = new FormAttachment(0, 2); filterData.right = new FormAttachment(100, -2); filterComposite.setLayoutData(filterData); data.top = new FormAttachment(filterComposite, 2); } else { data.top = new FormAttachment(0, 0); } treeComposite.setLayoutData(data); } };
The constructor FilteredTree(Composite, int, PatternFilter, boolean) is deprecated
2. WARNING in /src/org/eclipse/pde/internal/ui/views/target/StateViewPage.java
 (at line 293)
fFilteredTree = new FilteredTree(fComposite, SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL | SWT.SINGLE, new PatternFilter(), true) {
The constructor FilteredTree(Composite, int, PatternFilter, boolean) is deprecated

/src/org/eclipse/pde/internal/ui/wizards/plugin/NewProjectCreationOperation.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/wizards/plugin/NewProjectCreationOperation.java
 (at line 268)
bundle.setHeader(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, exeEnvironment);
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

/src/org/eclipse/pde/internal/ui/wizards/tools/ConvertProjectToPluginOperation.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/pde/internal/ui/wizards/tools/ConvertProjectToPluginOperation.java
 (at line 311)
pluginBundle.setHeader(Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT, ee.getId());
The field Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT is deprecated

INFO WARNINGS

errors others warnings forbidden warnings discouraged warnings

FORBIDDEN ACCESS WARNINGS

top errors infos others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors infos others warnings forbidden warnings