Community
Participate
Working Groups
Build Identifier: 20110615-0604 I receive the next message: !ENTRY org.eclipse.ui 4 4 2011-08-17 14:37:12.817 !MESSAGE Referenced part does not exist yet: org.eclipse.ui.views.TaskList. Reproducible: Always Steps to Reproduce: 1. File -> New... -> Project 2. Plug-in Project -> Next 3. Project name: "AView" -> Next 4. ID: AView, Version: 1.0.0, Name:AView, Provider: LeoLabs, Activator: aview.Activator, This... make contribution to UI: yes, Enable API analysis: no, RCP: no -> Next 5. Plug-in with View -> Next 6. Java Package name: aview.views, View Class Name: SampleView, View name: Sample View, View Category ID: aView, Category Name: "a Sample Category", Table viewer, Add static ID: yes, Add view to the java perspective: yes, Add context help: yes -> Finish 7. Right click on AView project -> Run as.. -> Eclipse application
And the view is not where it is expected to be. <extension point="org.eclipse.ui.perspectiveExtensions"> <perspectiveExtension targetID="org.eclipse.jdt.ui.JavaPerspective"> <view ratio="0.5" relative="org.eclipse.ui.views.TaskList" relationship="right" id="aview.views.SampleView"> </view> </perspectiveExtension> </extension>
(In reply to comment #0) > !ENTRY org.eclipse.ui 4 4 2011-08-17 14:37:12.817 > !MESSAGE Referenced part does not exist yet: org.eclipse.ui.views.TaskList. The 'Tasks' view is not added to the 'Java' perspective by default. You need to pick a view that the 'Java' perspective does define in its layout.
It is a standard example from Eclipse examples.
(In reply to comment #3) > It is a standard example from Eclipse examples. Sorry, you're right, the template is wrong. PDE, please modify the template so that it points to a view that actually is defined in the 'Java' perspective by default.
Fixed in master. The view will now be put relative to the problems view.
Verified in I20120503-1800
Created attachment 260316 [details] Referenced part does not exist yet: org.eclipse.ui.views.ProblemView.