package com.opensymphony.sitemesh; import com.opensymphony.module.sitemesh.SitemeshBuffer; import java.io.IOException; /** * @author Joe Walnes * @since SiteMesh 3 */ public interface ContentProcessor { boolean handles(SiteMeshContext context); boolean handles(String contentType); Content build(SitemeshBuffer buffer, SiteMeshContext context) throws IOException; }