Java Query Participants

org.eclipse.jdt.ui.queryParticipants

3.0

This extension point allows clients to contribute results to java searches

<!ELEMENT extension (queryParticipant)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT queryParticipant EMPTY>

<!ATTLIST queryParticipant

class  CDATA #REQUIRED

id     CDATA #REQUIRED

nature CDATA #REQUIRED

name   CDATA #REQUIRED>


The following is an example of a query participant contribution:

   

<extension point=

"org.eclipse.jdt.ui.queryParticipants"

>

<queryParticipant label=

"Example Query Participant"

nature=

"org.eclipse.jdt.core.javanature"

class=

"org.eclipse.jdt.ui.example.TestParticipant"

id=

"org.eclipse.jdt.ui.example.TestParticipant"

>

</queryParticipant>

</extension>

The contributed class must implement org.eclipse.jdt.ui.search.IQueryParticipant

none