org.sitemesh.content.tagrules.html
Class TagReplaceRule

java.lang.Object
  extended by org.sitemesh.tagprocessor.BasicRule
      extended by org.sitemesh.content.tagrules.html.TagReplaceRule
All Implemented Interfaces:
TagRule

public class TagReplaceRule
extends BasicRule

Very simple rule for replacing all occurences of one tag with another.

For example, to convert all <b> tags to <strong>:

new TagReplaceRule("b", "strong"));

Author:
Joe Walnes

Field Summary
 
Fields inherited from class org.sitemesh.tagprocessor.BasicRule
tagProcessorContext
 
Constructor Summary
TagReplaceRule(String newTagName)
           
 
Method Summary
 void process(Tag tag)
          Implementations can use this to do any necessary work on the Tag such as extracting values or transforming it.
 
Methods inherited from class org.sitemesh.tagprocessor.BasicRule
setTagProcessorContext
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TagReplaceRule

public TagReplaceRule(String newTagName)
Method Detail

process

public void process(Tag tag)
             throws IOException
Description copied from interface: TagRule
Implementations can use this to do any necessary work on the Tag such as extracting values or transforming it.

Specified by:
process in interface TagRule
Specified by:
process in class BasicRule
Throws:
IOException


Copyright © 2011. All Rights Reserved.