Participantes de Consulta Java

org.eclipse.jdt.ui.queryParticipants

3.0

Este ponto de extensão permite aos clientes preencherem os resultados de pesquisas Java.

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


A seguir apresenta-se um exemplo de uma contribuição do participante de consulte:

   

<ponto de extensão=

"org.eclipse.jdt.ui.queryParticipants"

>

<queryParticipant label=

"Example Query Participant"

nature=

"org.eclipse.jdt.core.javanature"

classe=

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

id=

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

>

</queryParticipant>

</extension>

A classe de contribuição tem de implementar org.eclipse.jdt.ui.search.IQueryParticipant

nenhuma