Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » search results vs. plugin.xml
search results vs. plugin.xml [message #334059] Fri, 16 January 2009 21:01 Go to next message
Eclipse UserFriend
Originally posted by: first.last.oracle.com

When I search for references to a class using the command
Search-References-Workspace (Ctrl-Shift-G), the search results
will not always display references to the class from plugin.xml.

Pseudo-example:
I have an implementation of org.eclipse.core.runtime.IAdapterFactory
named "foo.BarAdapterFactory" that is referenced in an extension:

<extension
point="org.eclipse.core.runtime.adapters">

<factory
class="foo.BarAdapterFactory"
adaptableType="...">
<adapter type="..."/>
</factory>
</extension>

This reference to "foo.BarAdapterFactory" shows up in the search results.

I also have an implementation of org.eclipse.ui.INewWizard named
"foo.BarWizard" that is referenced in another extension:

<extension
point="org.eclipse.ui.newWizards">

<category
id="..."
name="%..."
parentCategory="..."/>
<wizard
id="..."
name="%..."
icon="..."
category="...">
<description>%...</description>
<class class="foo.BarWizard">
<parameter name="xxx" value="true"/>
<parameter name="yyy" value="40" />
</class>
</wizard>
</extension>

This reference to "foo.BarWizard" does *not* show up in the search results.

Is this a bug? Or am I expecting too much?

Thanks.
Brian
Re: search results vs. plugin.xml [message #334060 is a reply to message #334059] Fri, 16 January 2009 21:07 Go to previous messageGo to next message
Chris Aniszczyk is currently offline Chris AniszczykFriend
Messages: 674
Registered: July 2009
Senior Member
Brian Vosburgh wrote:
> Is this a bug? Or am I expecting too much?

This looks like a bug. Can you file a bug against PDE with a small test
case?

Cheers,

~ Chris
Re: search results vs. plugin.xml [message #334064 is a reply to message #334060] Sat, 17 January 2009 01:40 Go to previous message
Eclipse UserFriend
Originally posted by: first.last.oracle.com

Chris Aniszczyk wrote:
> This looks like a bug. Can you file a bug against PDE with a small test
> case?

https://bugs.eclipse.org/bugs/show_bug.cgi?id=261404

Thanks.
Brian
Previous Topic:Re: pde headless build error
Next Topic:How to force something into the UI thread
Goto Forum:
  


Current Time: Fri Apr 19 23:18:38 GMT 2024

Powered by FUDForum. Page generated in 0.02867 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top