1
2
3
4
5
6
7
8
9 package net.sf.cobol2j;
10
11 import javax.xml.bind.annotation.XmlRegistry;
12
13
14 /***
15 * This object contains factory methods for each
16 * Java content interface and Java element interface
17 * generated in the net.sf.cobol2j package.
18 * <p>An ObjectFactory allows you to programatically
19 * construct new instances of the Java representation
20 * for XML content. The Java representation of XML
21 * content can consist of schema derived interfaces
22 * and classes representing the binding of schema
23 * type definitions, element declarations and model
24 * groups. Factory methods for each of these are
25 * provided in this class.
26 *
27 */
28 @XmlRegistry
29 public class ObjectFactory {
30
31
32 /***
33 * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.sf.cobol2j
34 *
35 */
36 public ObjectFactory() {
37 }
38
39 /***
40 * Create an instance of {@link FieldFormat }
41 *
42 */
43 public FieldFormat createFieldFormat() {
44 return new FieldFormat();
45 }
46
47 /***
48 * Create an instance of {@link FieldsGroup }
49 *
50 */
51 public FieldsGroup createFieldsGroup() {
52 return new FieldsGroup();
53 }
54
55 /***
56 * Create an instance of {@link RecordFormat }
57 *
58 */
59 public RecordFormat createRecordFormat() {
60 return new RecordFormat();
61 }
62
63 /***
64 * Create an instance of {@link FileFormat }
65 *
66 */
67 public FileFormat createFileFormat() {
68 return new FileFormat();
69 }
70
71 /***
72 * Create an instance of {@link FieldsList }
73 *
74 */
75 public FieldsList createFieldsList() {
76 return new FieldsList();
77 }
78
79 }