1 16 package org.apache.cocoon.portal.layout.renderer.aspect; 17 18 import java.util.Map ; 19 20 import org.apache.cocoon.portal.PortalService; 21 import org.apache.cocoon.portal.layout.Layout; 22 import org.xml.sax.ContentHandler ; 23 import org.xml.sax.SAXException ; 24 25 35 public interface RendererAspectContext { 36 37 40 void invokeNext(Layout layout, PortalService service, ContentHandler handler) 41 throws SAXException ; 42 43 46 Object getAspectConfiguration(); 47 48 51 void setAttribute(String key, Object attribute); 52 53 56 Object getAttribute(String key); 57 58 61 void removeAttribute(String key); 62 63 66 Map getObjectModel(); 67 68 72 boolean isRendering(); 73 } 74 | Popular Tags |