1 54 55 69 70 83 package org.wings.template.parser; 84 85 import java.io.IOException ; 86 import java.io.InputStream ; 87 88 public interface SpecialTagHandler { 89 114 SGMLTag parseTag(ParseContext context, 115 PositionReader input, 116 long startPos, 117 SGMLTag startTag) 118 throws IOException ; 119 120 126 long getTagStart(); 127 128 135 long getTagLength(); 136 137 143 void executeTag(ParseContext context, InputStream input) 144 throws Exception ; 145 } 146 147 153 154 155 | Popular Tags |