1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.configuration;
18
19 /***
20 * A specialized hierarchical configuration class that is able to parse XML
21 * documents.
22 *
23 * <p>The parsed document will be stored keeping its structure. The contained
24 * properties can be accessed using all methods supported by the base class
25 * <code>HierarchicalConfiguration</code>.
26 *
27 * @since commons-configuration 1.0
28 *
29 * @author Jörg Schaible
30 * @author Oliver Heger
31 * @version $Revision$, $Date: 2005-10-05 21:36:15 +0200 (Wed, 05 Oct 2005) $
32 * @deprecated This class is deprecated. Use <code>XMLConfiguration</code>
33 * instead, which supports all features this class had offered before.
34 */
35 public class HierarchicalXMLConfiguration extends XMLConfiguration
36 {
37
38 }