1 16 package org.apache.cocoon.components.elementprocessor; 17 18 import org.apache.cocoon.components.elementprocessor.types.Attribute; 19 20 import java.io.IOException ; 21 22 47 public interface ElementProcessor 48 extends org.apache.avalon.framework.component.Component 49 { 50 51 String ROLE = ElementProcessor.class.getName(); 52 53 97 98 public void initialize(Attribute [] attributes, ElementProcessor parent) 99 throws IOException ; 100 101 117 118 public void acceptCharacters(char [] data); 119 120 136 137 public void acceptWhitespaceCharacters(char [] data); 138 139 151 152 public void endProcessing() 153 throws IOException ; 154 } | Popular Tags |