equal
deleted
inserted
replaced
25 import com.sun.org.apache.xml.internal.res.XMLErrorResources; |
25 import com.sun.org.apache.xml.internal.res.XMLErrorResources; |
26 import com.sun.org.apache.xml.internal.res.XMLMessages; |
26 import com.sun.org.apache.xml.internal.res.XMLMessages; |
27 import com.sun.org.apache.xml.internal.utils.PrefixResolver; |
27 import com.sun.org.apache.xml.internal.utils.PrefixResolver; |
28 import com.sun.org.apache.xml.internal.utils.XMLStringFactory; |
28 import com.sun.org.apache.xml.internal.utils.XMLStringFactory; |
29 import com.sun.org.apache.xalan.internal.utils.ObjectFactory; |
29 import com.sun.org.apache.xalan.internal.utils.ObjectFactory; |
|
30 import com.sun.org.apache.xalan.internal.utils.SecuritySupport; |
30 |
31 |
31 /** |
32 /** |
32 * A DTMManager instance can be used to create DTM and |
33 * A DTMManager instance can be used to create DTM and |
33 * DTMIterator objects, and manage the DTM objects in the system. |
34 * DTMIterator objects, and manage the DTM objects in the system. |
34 * |
35 * |
381 |
382 |
382 static |
383 static |
383 { |
384 { |
384 try |
385 try |
385 { |
386 { |
386 debug = System.getProperty("dtm.debug") != null; |
387 debug = SecuritySupport.getSystemProperty("dtm.debug") != null; |
387 } |
388 } |
388 catch (SecurityException ex){} |
389 catch (SecurityException ex){} |
389 } |
390 } |
390 |
391 |
391 /** This value, set at compile time, controls how many bits of the |
392 /** This value, set at compile time, controls how many bits of the |