1 package com.icl.saxon.output; 2 import javax.xml.transform.OutputKeys ; 3 import java.util.Properties ; 4 5 9 10 public class TextFragment { 11 12 private static Properties props = new Properties (); 13 static { 14 props.put(OutputKeys.METHOD, "text"); 15 props.put(OutputKeys.INDENT, "no"); 16 } 17 18 21 22 public static Properties getProperties() { 23 return props; 24 } 25 } 26 27 | Popular Tags |