ElementWizardFilter

Identifier:
com.ps.consul.eclipse.ui.ElementWizardFilter

Since:
3.0.16

Description:
This extension provides support for filtering New Element Wizard Actions from context menu.
For a given class and type all actions are filtered.
Elements matching class and type will only show actions, which are matching the expressions.
Elements which do not match any filter will show all standard actions in their context menu.

It is possible to define serveral filters for the same class and type.

Configuration Markup:

<!ELEMENT extension (filter)+>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>

Extension point for additional element wizard filter.



<!ELEMENT filter EMPTY>

<!ATTLIST filter

name            CDATA #IMPLIED

elementclass    CDATA #REQUIRED

elementtype     CDATA #REQUIRED

classexpression CDATA #IMPLIED

typeexpression  CDATA #IMPLIED>

An additional element wizard filter.



Examples:
<filter
   name="optional - name of the filter"
   elementclass="mandatory - the element class"
   elementtype="mandatory - the element type"
   typeexpression="optional -regular expression for the new element types to be shown - empty means all"
   classexpression="optional- regular expression for the new element classes to be shown - empty means all">
</filter>