1 16 19 20 package com.sun.org.apache.xalan.internal.xsltc.trax; 21 22 import java.util.Properties ; 23 24 27 public final class OutputSettings { 28 29 private String _cdata_section_elements = null; 30 private String _doctype_public = null; 31 private String _encoding = null; 32 private String _indent = null; 33 private String _media_type = null; 34 private String _method = null; 35 private String _omit_xml_declaration = null; 36 private String _standalone = null; 37 private String _version = null; 38 39 public Properties getProperties() { 40 Properties properties = new Properties (); 41 return(properties); 42 } 43 44 45 } 46 | Popular Tags |