-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjectFactory.java
199 lines (171 loc) · 5.4 KB
/
ObjectFactory.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.02 at 03:58:23 PM EEST
//
package org.model.xjc;
import javax.xml.bind.annotation.XmlRegistry;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.model.xjc package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.model.xjc
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link AadeBookInvoiceType }
*
*/
public AadeBookInvoiceType createAadeBookInvoiceType() {
return new AadeBookInvoiceType();
}
/**
* Create an instance of {@link InvoicesDoc }
*
*/
public InvoicesDoc createInvoicesDoc() {
return new InvoicesDoc();
}
/**
* Create an instance of {@link InvoiceRowType }
*
*/
public InvoiceRowType createInvoiceRowType() {
return new InvoiceRowType();
}
/**
* Create an instance of {@link PaymentMethodDetailType }
*
*/
public PaymentMethodDetailType createPaymentMethodDetailType() {
return new PaymentMethodDetailType();
}
/**
* Create an instance of {@link TaxTotalsType }
*
*/
public TaxTotalsType createTaxTotalsType() {
return new TaxTotalsType();
}
/**
* Create an instance of {@link InvoiceSummaryType }
*
*/
public InvoiceSummaryType createInvoiceSummaryType() {
return new InvoiceSummaryType();
}
/**
* Create an instance of {@link InvoiceHeaderType }
*
*/
public InvoiceHeaderType createInvoiceHeaderType() {
return new InvoiceHeaderType();
}
/**
* Create an instance of {@link AddressType }
*
*/
public AddressType createAddressType() {
return new AddressType();
}
/**
* Create an instance of {@link PartyType }
*
*/
public PartyType createPartyType() {
return new PartyType();
}
/**
* Create an instance of {@link ShipType }
*
*/
public ShipType createShipType() {
return new ShipType();
}
/**
* Create an instance of {@link IncomeClassificationsDoc }
*
*/
public IncomeClassificationsDoc createIncomeClassificationsDoc() {
return new IncomeClassificationsDoc();
}
/**
* Create an instance of {@link InvoiceIncomeClassificationType }
*
*/
public InvoiceIncomeClassificationType createInvoiceIncomeClassificationType() {
return new InvoiceIncomeClassificationType();
}
/**
* Create an instance of {@link IncomeClassificationType }
*
*/
public IncomeClassificationType createIncomeClassificationType() {
return new IncomeClassificationType();
}
/**
* Create an instance of {@link InvoicesIncomeClassificationDetailType }
*
*/
public InvoicesIncomeClassificationDetailType createInvoicesIncomeClassificationDetailType() {
return new InvoicesIncomeClassificationDetailType();
}
/**
* Create an instance of {@link ExpensesClassificationsDoc }
*
*/
public ExpensesClassificationsDoc createExpensesClassificationsDoc() {
return new ExpensesClassificationsDoc();
}
/**
* Create an instance of {@link InvoiceExpensesClassificationType }
*
*/
public InvoiceExpensesClassificationType createInvoiceExpensesClassificationType() {
return new InvoiceExpensesClassificationType();
}
/**
* Create an instance of {@link InvoicesExpensesClassificationDetailType }
*
*/
public InvoicesExpensesClassificationDetailType createInvoicesExpensesClassificationDetailType() {
return new InvoicesExpensesClassificationDetailType();
}
/**
* Create an instance of {@link ExpensesClassificationType }
*
*/
public ExpensesClassificationType createExpensesClassificationType() {
return new ExpensesClassificationType();
}
/**
* Create an instance of {@link AadeBookInvoiceType.PaymentMethods }
*
*/
public AadeBookInvoiceType.PaymentMethods createAadeBookInvoiceTypePaymentMethods() {
return new AadeBookInvoiceType.PaymentMethods();
}
/**
* Create an instance of {@link AadeBookInvoiceType.TaxesTotals }
*
*/
public AadeBookInvoiceType.TaxesTotals createAadeBookInvoiceTypeTaxesTotals() {
return new AadeBookInvoiceType.TaxesTotals();
}
}