Structured Builder Participant

org.eclipse.wst.sse.core.builderparticipant

3.0

Allows for the contribution of participants to the Structured building process.

<!ELEMENT extension EMPTY>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT participant EMPTY>

<!ATTLIST participant

class       CDATA #REQUIRED

contentType CDATA #REQUIRED>

A participant to be called during the build process. Participants are notified before and after the Structured Builder runs on a project, given the resource deltas during incremental builds and told which resources to build during a full rebuild.



<extension point=

"org.eclipse.wst.sse.core.builderparticipant"

id=

"com.example.doctypeFinder"

name=

"XML DOCTYPE reference tracker"

>

<participant contentType=

"contenttype.xml"

class=

"com.example.builder.DoctypeParticipant"

/>

</extension>