| org.apache.jetspeed.rewriter.rules.Ruleset
All known Subclasses: org.apache.jetspeed.rewriter.rules.impl.RulesetImpl,
Method Summary | |
public boolean | getRemoveComments() Get the remove comments flag for removing comments from the markup source. | Rule | getRule(String ruleId) Given a rule identifier, lookup and return a rule object. | Collection | getRules() Get a collection of rules for this rule set. | Tag | getTag(String tagId) Given a tag identifier, lookup and return a tag object. | public Collection | getTags() Get a collection of markup tags for this rule set. | public void | setRemoveComments(boolean flag) Set the remove comments flag for removing comments from the markup source. | void | sync() |
getRemoveComments | public boolean getRemoveComments()(Code) | | Get the remove comments flag for removing comments from the markup source.
true True if comments should be removed. |
getRule | Rule getRule(String ruleId)(Code) | | Given a rule identifier, lookup and return a rule object.
Parameters: ruleId - the unique rule identifier the rule object for the given identifier |
getRules | Collection getRules()(Code) | | Get a collection of rules for this rule set.
A collection of rules. |
getTag | Tag getTag(String tagId)(Code) | | Given a tag identifier, lookup and return a tag object.
Parameters: tagId - the unique tag identifier the tag object for the given identifier |
getTags | public Collection getTags()(Code) | | Get a collection of markup tags for this rule set.
A collection of markup tags. |
setRemoveComments | public void setRemoveComments(boolean flag)(Code) | | Set the remove comments flag for removing comments from the markup source.
Parameters: flag - True if comments should be removed. |
sync | void sync()(Code) | | Synchronize the Ruleset
|
|
|