Project Facet Images Extension Point

org.eclipse.wst.common.project.facet.ui.images

Used for specifying the image that should be used with a facet, a category, or a runtime component type.

<!ELEMENT extension (image*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>

(no description available)



<!ELEMENT image EMPTY>

<!ATTLIST image

facet                  CDATA #IMPLIED

category               CDATA #IMPLIED

runtime-component-type CDATA #IMPLIED

path                   CDATA #REQUIRED>

Specifies the image that should be used with the specified facet, category, or runtime component type. Only one of the facet, category, and runtime-component-type attributes should be used.



The following example associates images with two facets and a category.

<extension point=

"org.eclipse.wst.common.project.facet.ui.images"

>

<image facet=

"facet1"

path=

"icons/facet1.gif"

/>

<image facet=

"facet2"

path=

"icons/facet2.gif"

/>

<image category=

"category1"

path=

"icons/category1.gif"

/>

</extension>