Content Filters
Identifier:
org.eclipse.wst.internet.monitor.core.contentFilters
Since:
1.0
Description:
This extension point is used to filter content received in a monitor.
Configuration Markup:
<!ELEMENT extension (filter+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- point - a fully qualified identifier of the target extension point
- id - an optional identifier of the extension instance
- name - an optional name of the extension instance
<!ELEMENT filter EMPTY>
<!ATTLIST filter
id CDATA #REQUIRED
class CDATA #REQUIRED
name CDATA #REQUIRED
order CDATA #IMPLIED>
- id - specifies a unique identifier for this extension point
- class - specifies the fully qualified name of a Java class that extends org.eclipse.wst.internet.monitor.core.internal.provisional.ContentFilterDelegate.
Content filter instances of this type will delegate to instances of this class.
- name - a translatable name used to identify the filter
- order - an integer used to order filters relative to each other. Lower orders are processed first
Examples:
The following is an example of a content filter extension point:
<extension
point=
"org.eclipse.wst.internet.monitor.core.contentFilter"
>
<filter
id=
"com.example.ExampleIdentifier"
name=
"%exampleName"
class=
"com.example.ExampleContentFilter"
/>
</extension>
API Information:
Value of the attribute class must be a fully qualified name of a Java class that extends the abstract class org.eclipse.wst.internet.monitor.core.internal.provisional.ContentFilterDelegate
.
Copyright (c) 2003, 2005 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html