Uses of Interface
org.apache.ecs.Filter

Packages that use Filter
org.apache.ecs   
org.apache.ecs.filter   
org.apache.ecs.xml   
 

Uses of Filter in org.apache.ecs
 

Fields in org.apache.ecs declared as Filter
private static Filter GenericElement._defaultFilter
          Create default filter to use in all GenericElements Can be overridden by setFilter method.
private  Filter GenericElement.filter
          Filter to use to escape input
private  Filter ElementAttributes.attribute_filter
          Filter to use to escape attribute input
 

Methods in org.apache.ecs that return Filter
 Filter GenericElement.getFilter()
          Get the filter that is currently in use.
 Filter ElementAttributes.getAttributeFilter()
          Get the filter for all element attributes.
 Filter Filter.addAttribute(java.lang.String name, java.lang.Object attribute)
           
 Filter Filter.removeAttribute(java.lang.String name)
           
 Filter Attributes.getAttributeFilter()
          Get the AttributeFilter that is in use.
 

Methods in org.apache.ecs with parameters of type Filter
 void GenericElement.setFilter(Filter filter)
          Override the default filter with a user supplied filter.
 Element ElementAttributes.setAttributeFilter(Filter attribute_filter)
          Set up a new filter for all element attributes.
 Element Attributes.setAttributeFilter(Filter attribute_filter)
          Set the AttributeFilter that should be used.
 

Uses of Filter in org.apache.ecs.filter
 

Classes in org.apache.ecs.filter that implement Filter
 class CharacterFilter
          This class creates a Filter object.
 class NullFilter
          A filter for ECS that doesn't do anything.
 class RegexpFilter
          This filter uses regexp to create expressions and allows you do a replace on them.
 class StringFilter
          Stupid implementation of Filter interface to demonstrate how easy
it is to create your own filters.
 class WordFilter
          This filter uses StringTokenizer to create "words" and allow you to replace on those "words".
 

Methods in org.apache.ecs.filter that return Filter
 Filter CharacterFilter.addAttribute(java.lang.String name, java.lang.Object attribute)
          Register things to be filtered.
 Filter CharacterFilter.removeAttribute(java.lang.String name)
          Remove things to be filtered.
 Filter WordFilter.addAttribute(java.lang.String attribute, java.lang.Object entity)
          Put a filter somewhere we can get to it.
 Filter WordFilter.removeAttribute(java.lang.String attribute)
          Get rid of a current filter.
 Filter StringFilter.addAttribute(java.lang.String attribute, java.lang.Object entity)
          Put a filter somewhere we can get to it.
 Filter StringFilter.removeAttribute(java.lang.String attribute)
          Get rid of a current filter.
 Filter NullFilter.addAttribute(java.lang.String name, java.lang.Object attribute)
           
 Filter NullFilter.removeAttribute(java.lang.String name)
           
 Filter RegexpFilter.addAttribute(java.lang.String expression, java.lang.Object substitution)
          Add regular expression - substitution pair.
 Filter RegexpFilter.removeAttribute(java.lang.String expression)
          Get rid of the specified expression filter.
 

Uses of Filter in org.apache.ecs.xml
 

Constructors in org.apache.ecs.xml with parameters of type Filter
XML(java.lang.String element_type, Filter filter)
          Construct a new XML element with this name, and specify a filter for it.
XML(java.lang.String element_type, boolean close, Filter filter)
          Construct a new XML element with this name, and specify a filter for it.
 



Copyright © 1999-2003 Apache Software Foundation. All Rights Reserved.