640328be6d6c46f4e73759054de75cc6b7515fd4
[jalviewjs.git] / src / org / exolab / castor / xml / Unmarshaller.java
1 package org.exolab.castor.xml;
2
3 import java.io.PrintWriter;
4 import java.io.Reader;
5
6 import org.exolab.castor.mapping.Mapping;
7
8 public class Unmarshaller {
9
10         public Unmarshaller(Object record) {
11                 // TODO Auto-generated constructor stub
12         }
13
14         public void setIgnoreExtraElements(boolean b) {
15                 // TODO Auto-generated method stub
16                 
17         }
18
19         public void setIgnoreExtraAttributes(boolean b) {
20                 // TODO Auto-generated method stub
21                 
22         }
23
24         public void setMapping(Mapping map) {
25                 // TODO Auto-generated method stub
26                 
27         }
28
29         public void setLogWriter(PrintWriter printWriter) {
30                 // TODO Auto-generated method stub
31                 
32         }
33
34         public Object unmarshal(Reader file) {
35                 // TODO Auto-generated method stub
36                 return null;
37         }
38
39         public void setDebug(boolean debugEnabled) {
40                 // TODO Auto-generated method stub
41                 
42         }
43
44 }