1 16 19 package com.sun.org.apache.xml.internal.utils; 20 21 24 public abstract class XMLStringFactory 25 { 26 27 35 public abstract XMLString newstr(String string); 36 37 47 public abstract XMLString newstr(FastStringBuffer string, int start, 48 int length); 49 50 60 public abstract XMLString newstr(char[] string, int start, 61 int length); 62 63 68 public abstract XMLString emptystr(); 69 } 70 | Popular Tags |