request filter

org.eclipse.atf.mozilla.ide.ui.filter

1.0

This extension point allows filters to be declared that will be placed on the toolbar of the Request Monitor view.

<!ELEMENT extension (filter)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT filter EMPTY>

<!ATTLIST filter

class   CDATA #REQUIRED

tooltip CDATA #REQUIRED

icon    CDATA #REQUIRED>


<extension point=

"org.eclipse.atf.mozilla.ide.ui.filter"

>

<filter class=

"org.eclipse.atf.mozilla.ide.ui.xhrmon.model.CSSFilter"

tooltip=

"Show CSS only."

icon=

"icons/xhrmon/css_filter.gif"

/>

</extension>

The class specified must implement the org.eclipse.jface.viewers.ViewerFilter.

The current ATF contributes to this extension point for filtering Image, CSS, Javascript, and HTML requests. These are found in the org.eclipse.mozilla.ide.ui.xhrmon.model package.