Uses of Interface
com.randomcoder.content.ContentFilter

Packages that use ContentFilter
com.randomcoder.article Article management classes. 
com.randomcoder.article.comment Article commenting classes. 
com.randomcoder.content Content filtering support classes. 
com.randomcoder.feed News feeds and syndication. 
 

Uses of ContentFilter in com.randomcoder.article
 

Fields in com.randomcoder.article declared as ContentFilter
protected  ContentFilter AbstractSingleArticleController.contentFilter
          Content filter.
protected  ContentFilter AbstractArticleListController.contentFilter
          Content Filter.
 

Methods in com.randomcoder.article with parameters of type ContentFilter
 void ArticleAddValidator.setContentFilter(ContentFilter contentFilter)
          Sets the ContentFilter implementation to use.
 void AbstractSingleArticleController.setContentFilter(ContentFilter contentFilter)
          Sets the content filter to use.
 void AbstractArticleListController.setContentFilter(ContentFilter contentFilter)
          Sets the content filter to use for decorating articles.
 

Constructors in com.randomcoder.article with parameters of type ContentFilter
ArticleDecorator(Article article, ContentFilter filter)
          Creates a new decorator using the given article and content filter.
 

Uses of ContentFilter in com.randomcoder.article.comment
 

Methods in com.randomcoder.article.comment with parameters of type ContentFilter
 void CommentValidator.setContentFilter(ContentFilter contentFilter)
          Sets the ContentFilter implementation to use.
 

Constructors in com.randomcoder.article.comment with parameters of type ContentFilter
CommentDecorator(Comment comment, ContentFilter filter)
          Creates a new comment decorator using the given comment and filter.
 

Uses of ContentFilter in com.randomcoder.content
 

Classes in com.randomcoder.content that implement ContentFilter
 class MultiContentFilter
          Content filter wrapper which maps content types onto concrete filter implementations.
 class TextFilter
          Plain text (text/plain) filter.
 class XHTMLFilter
          Simple XHTML content filter.
 

Methods in com.randomcoder.content with parameters of type ContentFilter
static String ContentUtils.format(String mimeType, URL baseUrl, InputSource content, ContentFilter filter)
          Format the given input source using the given filter into XHTML.
static void ContentUtils.format(String mimeType, URL baseUrl, InputSource content, ContentFilter filter, Result output)
          Format the given input source using the given filter into XHTML.
static String ContentUtils.formatText(String content, URL baseUrl, ContentType contentType, ContentFilter filter)
          Format the given content to XHTML.
static void ContentUtils.formatText(String content, URL baseUrl, ContentType contentType, ContentFilter filter, Result result)
          Format the given content to XHTML.
 void MultiContentFilter.setDefaultHandler(ContentFilter defaultFilter)
          Sets the default filter to use if lookup fails.
 

Method parameters in com.randomcoder.content with type arguments of type ContentFilter
 void MultiContentFilter.setFilters(Map<String,ContentFilter> filters)
          Sets a map of filters keyed by content type to use.
 

Uses of ContentFilter in com.randomcoder.feed
 

Methods in com.randomcoder.feed with parameters of type ContentFilter
 void Rss20FeedGenerator.setContentFilter(ContentFilter contentFilter)
          Sets the content filter to use for transforming articles into XHTML.
 void AtomFeedGenerator.setContentFilter(ContentFilter contentFilter)
          Sets the content filter to use for transforming articles into XHTML.
 



Copyright © 2006-2010 Craig Condit. All Rights Reserved.