1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.utils.xstream;
18
19 import java.io.File;
20 import java.io.FileInputStream;
21 import java.io.FileNotFoundException;
22 import java.io.IOException;
23 import java.io.InputStream;
24
25 import com.thoughtworks.xstream.XStream;
26 import com.thoughtworks.xstream.io.xml.DomDriver;
27
28
29
30
31
32 public class XMLConfigFile<MODEL_TYPE> {
33
34 private MODEL_TYPE model;
35
36 public XMLConfigFile(String fileName, AliasTransf... transformations) throws FileNotFoundException {
37 XStream result = new XStream(new DomDriver());
38 for (AliasTransf transf : transformations) transf.transform(result);
39
40
41
42 InputStream is = null;
43 if (is == null) is = new FileInputStream(new File(fileName));
44 model = (MODEL_TYPE) result.fromXML(is);
45 try {
46 is.close();
47 } catch (IOException e) {
48
49 e.printStackTrace();
50 }
51 }
52
53 public MODEL_TYPE getModel() {
54 return model;
55 }
56 }
57