1 28 29 package com.caucho.xml; 30 31 import java.io.IOException ; 32 33 abstract class Entities { 34 abstract int getEntity(String entity); 35 36 abstract void printText(XmlPrinter os, 37 char []text, int offset, int length, 38 boolean attr) 39 throws IOException ; 40 41 void printURIAttr(XmlPrinter os, char []text, int offset, int length) 42 throws IOException  43 { 44 printText(os, text, offset, length, true); 45 } 46 } 47 | Popular Tags |