Teilnehmer für Java-Abfrage

org.eclipse.jdt.ui.queryParticipants

3.0

An diesem Erweiterungspunkt können Clients Ergebnisse zu Java-Suchoperationen bereitstellen.

<!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>


Das folgende Beispiel zeigt die Bereitstellung eines Abfrageteilnehmers:

   

<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>

Die bereitgestellte Klasse muss org.eclipse.jdt.ui.search.IQueryParticipant implementieren.

Keine