1
2
3
4
5
6
7
8
9 package gov.grants.apply.forms.phs398ResearchPlanV11;
10
11
12
13
14
15
16
17 public interface PHS398ResearchPlanDocument extends org.apache.xmlbeans.XmlObject
18 {
19 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
20 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(PHS398ResearchPlanDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("phs398researchplan4312doctype");
21
22
23
24
25 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan getPHS398ResearchPlan();
26
27
28
29
30 void setPHS398ResearchPlan(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan phs398ResearchPlan);
31
32
33
34
35 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan addNewPHS398ResearchPlan();
36
37
38
39
40
41
42 public interface PHS398ResearchPlan extends org.apache.xmlbeans.XmlObject
43 {
44 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
45 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(PHS398ResearchPlan.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("phs398researchplanf23aelemtype");
46
47
48
49
50 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType getApplicationType();
51
52
53
54
55 void setApplicationType(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType applicationType);
56
57
58
59
60 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType addNewApplicationType();
61
62
63
64
65 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments getResearchPlanAttachments();
66
67
68
69
70 void setResearchPlanAttachments(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments researchPlanAttachments);
71
72
73
74
75 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments addNewResearchPlanAttachments();
76
77
78
79
80 java.lang.String getFormVersion();
81
82
83
84
85 gov.grants.apply.system.globalLibraryV20.FormVersionDataType xgetFormVersion();
86
87
88
89
90 void setFormVersion(java.lang.String formVersion);
91
92
93
94
95 void xsetFormVersion(gov.grants.apply.system.globalLibraryV20.FormVersionDataType formVersion);
96
97
98
99
100
101
102 public interface ApplicationType extends org.apache.xmlbeans.XmlObject
103 {
104 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
105 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ApplicationType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("applicationtype0184elemtype");
106
107
108
109
110 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication.Enum getTypeOfApplication();
111
112
113
114
115 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication xgetTypeOfApplication();
116
117
118
119
120 void setTypeOfApplication(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication.Enum typeOfApplication);
121
122
123
124
125 void xsetTypeOfApplication(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication typeOfApplication);
126
127
128
129
130
131
132 public interface TypeOfApplication extends org.apache.xmlbeans.XmlString
133 {
134 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
135 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TypeOfApplication.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("typeofapplication1239elemtype");
136
137 org.apache.xmlbeans.StringEnumAbstractBase enumValue();
138 void set(org.apache.xmlbeans.StringEnumAbstractBase e);
139
140 static final Enum NEW = Enum.forString("New");
141 static final Enum RESUBMISSION = Enum.forString("Resubmission");
142 static final Enum RENEWAL = Enum.forString("Renewal");
143 static final Enum CONTINUATION = Enum.forString("Continuation");
144 static final Enum REVISION = Enum.forString("Revision");
145
146 static final int INT_NEW = Enum.INT_NEW;
147 static final int INT_RESUBMISSION = Enum.INT_RESUBMISSION;
148 static final int INT_RENEWAL = Enum.INT_RENEWAL;
149 static final int INT_CONTINUATION = Enum.INT_CONTINUATION;
150 static final int INT_REVISION = Enum.INT_REVISION;
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167 static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase
168 {
169
170
171
172 public static Enum forString(java.lang.String s)
173 { return (Enum)table.forString(s); }
174
175
176
177 public static Enum forInt(int i)
178 { return (Enum)table.forInt(i); }
179
180 private Enum(java.lang.String s, int i)
181 { super(s, i); }
182
183 static final int INT_NEW = 1;
184 static final int INT_RESUBMISSION = 2;
185 static final int INT_RENEWAL = 3;
186 static final int INT_CONTINUATION = 4;
187 static final int INT_REVISION = 5;
188
189 public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table =
190 new org.apache.xmlbeans.StringEnumAbstractBase.Table
191 (
192 new Enum[]
193 {
194 new Enum("New", INT_NEW),
195 new Enum("Resubmission", INT_RESUBMISSION),
196 new Enum("Renewal", INT_RENEWAL),
197 new Enum("Continuation", INT_CONTINUATION),
198 new Enum("Revision", INT_REVISION),
199 }
200 );
201 private static final long serialVersionUID = 1L;
202 private java.lang.Object readResolve() { return forInt(intValue()); }
203 }
204
205
206
207
208
209
210 public static final class Factory
211 {
212 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication newValue(java.lang.Object obj) {
213 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication) type.newValue( obj ); }
214
215 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication newInstance() {
216 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
217
218 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication newInstance(org.apache.xmlbeans.XmlOptions options) {
219 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType.TypeOfApplication) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
220
221 private Factory() { }
222 }
223 }
224
225
226
227
228
229
230 public static final class Factory
231 {
232 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType newInstance() {
233 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
234
235 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType newInstance(org.apache.xmlbeans.XmlOptions options) {
236 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ApplicationType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
237
238 private Factory() { }
239 }
240 }
241
242
243
244
245
246
247 public interface ResearchPlanAttachments extends org.apache.xmlbeans.XmlObject
248 {
249 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
250 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ResearchPlanAttachments.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("researchplanattachmentsd942elemtype");
251
252
253
254
255 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.IntroductionToApplication getIntroductionToApplication();
256
257
258
259
260 boolean isSetIntroductionToApplication();
261
262
263
264
265 void setIntroductionToApplication(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.IntroductionToApplication introductionToApplication);
266
267
268
269
270 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.IntroductionToApplication addNewIntroductionToApplication();
271
272
273
274
275 void unsetIntroductionToApplication();
276
277
278
279
280 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.SpecificAims getSpecificAims();
281
282
283
284
285 boolean isSetSpecificAims();
286
287
288
289
290 void setSpecificAims(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.SpecificAims specificAims);
291
292
293
294
295 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.SpecificAims addNewSpecificAims();
296
297
298
299
300 void unsetSpecificAims();
301
302
303
304
305 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.BackgroundSignificance getBackgroundSignificance();
306
307
308
309
310 boolean isSetBackgroundSignificance();
311
312
313
314
315 void setBackgroundSignificance(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.BackgroundSignificance backgroundSignificance);
316
317
318
319
320 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.BackgroundSignificance addNewBackgroundSignificance();
321
322
323
324
325 void unsetBackgroundSignificance();
326
327
328
329
330 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReport getProgressReport();
331
332
333
334
335 boolean isSetProgressReport();
336
337
338
339
340 void setProgressReport(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReport progressReport);
341
342
343
344
345 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReport addNewProgressReport();
346
347
348
349
350 void unsetProgressReport();
351
352
353
354
355 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ResearchDesignMethods getResearchDesignMethods();
356
357
358
359
360 boolean isSetResearchDesignMethods();
361
362
363
364
365 void setResearchDesignMethods(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ResearchDesignMethods researchDesignMethods);
366
367
368
369
370 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ResearchDesignMethods addNewResearchDesignMethods();
371
372
373
374
375 void unsetResearchDesignMethods();
376
377
378
379
380 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.InclusionEnrollmentReport getInclusionEnrollmentReport();
381
382
383
384
385 boolean isSetInclusionEnrollmentReport();
386
387
388
389
390 void setInclusionEnrollmentReport(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.InclusionEnrollmentReport inclusionEnrollmentReport);
391
392
393
394
395 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.InclusionEnrollmentReport addNewInclusionEnrollmentReport();
396
397
398
399
400 void unsetInclusionEnrollmentReport();
401
402
403
404
405 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReportPublicationList getProgressReportPublicationList();
406
407
408
409
410 boolean isSetProgressReportPublicationList();
411
412
413
414
415 void setProgressReportPublicationList(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReportPublicationList progressReportPublicationList);
416
417
418
419
420 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReportPublicationList addNewProgressReportPublicationList();
421
422
423
424
425 void unsetProgressReportPublicationList();
426
427
428
429
430 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection getHumanSubjectSection();
431
432
433
434
435 boolean isSetHumanSubjectSection();
436
437
438
439
440 void setHumanSubjectSection(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection humanSubjectSection);
441
442
443
444
445 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection addNewHumanSubjectSection();
446
447
448
449
450 void unsetHumanSubjectSection();
451
452
453
454
455 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections getOtherResearchPlanSections();
456
457
458
459
460 boolean isSetOtherResearchPlanSections();
461
462
463
464
465 void setOtherResearchPlanSections(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections otherResearchPlanSections);
466
467
468
469
470 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections addNewOtherResearchPlanSections();
471
472
473
474
475 void unsetOtherResearchPlanSections();
476
477
478
479
480 gov.grants.apply.system.attachmentsV10.AttachmentGroupMin0Max100DataType getAppendix();
481
482
483
484
485 boolean isSetAppendix();
486
487
488
489
490 void setAppendix(gov.grants.apply.system.attachmentsV10.AttachmentGroupMin0Max100DataType appendix);
491
492
493
494
495 gov.grants.apply.system.attachmentsV10.AttachmentGroupMin0Max100DataType addNewAppendix();
496
497
498
499
500 void unsetAppendix();
501
502
503
504
505
506
507 public interface IntroductionToApplication extends org.apache.xmlbeans.XmlObject
508 {
509 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
510 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(IntroductionToApplication.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("introductiontoapplication3a7belemtype");
511
512
513
514
515 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
516
517
518
519
520 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
521
522
523
524
525 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
526
527
528
529
530
531
532 public static final class Factory
533 {
534 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.IntroductionToApplication newInstance() {
535 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.IntroductionToApplication) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
536
537 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.IntroductionToApplication newInstance(org.apache.xmlbeans.XmlOptions options) {
538 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.IntroductionToApplication) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
539
540 private Factory() { }
541 }
542 }
543
544
545
546
547
548
549 public interface SpecificAims extends org.apache.xmlbeans.XmlObject
550 {
551 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
552 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(SpecificAims.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("specificaimsc9e6elemtype");
553
554
555
556
557 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
558
559
560
561
562 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
563
564
565
566
567 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
568
569
570
571
572
573
574 public static final class Factory
575 {
576 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.SpecificAims newInstance() {
577 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.SpecificAims) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
578
579 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.SpecificAims newInstance(org.apache.xmlbeans.XmlOptions options) {
580 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.SpecificAims) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
581
582 private Factory() { }
583 }
584 }
585
586
587
588
589
590
591 public interface BackgroundSignificance extends org.apache.xmlbeans.XmlObject
592 {
593 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
594 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(BackgroundSignificance.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("backgroundsignificance2fd5elemtype");
595
596
597
598
599 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
600
601
602
603
604 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
605
606
607
608
609 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
610
611
612
613
614
615
616 public static final class Factory
617 {
618 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.BackgroundSignificance newInstance() {
619 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.BackgroundSignificance) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
620
621 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.BackgroundSignificance newInstance(org.apache.xmlbeans.XmlOptions options) {
622 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.BackgroundSignificance) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
623
624 private Factory() { }
625 }
626 }
627
628
629
630
631
632
633 public interface ProgressReport extends org.apache.xmlbeans.XmlObject
634 {
635 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
636 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ProgressReport.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("progressreporte9e5elemtype");
637
638
639
640
641 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
642
643
644
645
646 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
647
648
649
650
651 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
652
653
654
655
656
657
658 public static final class Factory
659 {
660 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReport newInstance() {
661 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReport) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
662
663 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReport newInstance(org.apache.xmlbeans.XmlOptions options) {
664 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReport) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
665
666 private Factory() { }
667 }
668 }
669
670
671
672
673
674
675 public interface ResearchDesignMethods extends org.apache.xmlbeans.XmlObject
676 {
677 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
678 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ResearchDesignMethods.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("researchdesignmethodsf6ddelemtype");
679
680
681
682
683 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
684
685
686
687
688 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
689
690
691
692
693 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
694
695
696
697
698
699
700 public static final class Factory
701 {
702 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ResearchDesignMethods newInstance() {
703 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ResearchDesignMethods) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
704
705 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ResearchDesignMethods newInstance(org.apache.xmlbeans.XmlOptions options) {
706 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ResearchDesignMethods) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
707
708 private Factory() { }
709 }
710 }
711
712
713
714
715
716
717 public interface InclusionEnrollmentReport extends org.apache.xmlbeans.XmlObject
718 {
719 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
720 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(InclusionEnrollmentReport.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("inclusionenrollmentreport3c62elemtype");
721
722
723
724
725 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
726
727
728
729
730 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
731
732
733
734
735 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
736
737
738
739
740
741
742 public static final class Factory
743 {
744 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.InclusionEnrollmentReport newInstance() {
745 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.InclusionEnrollmentReport) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
746
747 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.InclusionEnrollmentReport newInstance(org.apache.xmlbeans.XmlOptions options) {
748 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.InclusionEnrollmentReport) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
749
750 private Factory() { }
751 }
752 }
753
754
755
756
757
758
759 public interface ProgressReportPublicationList extends org.apache.xmlbeans.XmlObject
760 {
761 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
762 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ProgressReportPublicationList.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("progressreportpublicationlistee2delemtype");
763
764
765
766
767 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
768
769
770
771
772 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
773
774
775
776
777 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
778
779
780
781
782
783
784 public static final class Factory
785 {
786 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReportPublicationList newInstance() {
787 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReportPublicationList) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
788
789 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReportPublicationList newInstance(org.apache.xmlbeans.XmlOptions options) {
790 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.ProgressReportPublicationList) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
791
792 private Factory() { }
793 }
794 }
795
796
797
798
799
800
801 public interface HumanSubjectSection extends org.apache.xmlbeans.XmlObject
802 {
803 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
804 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(HumanSubjectSection.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("humansubjectsection3390elemtype");
805
806
807
808
809 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.ProtectionOfHumanSubjects getProtectionOfHumanSubjects();
810
811
812
813
814 boolean isSetProtectionOfHumanSubjects();
815
816
817
818
819 void setProtectionOfHumanSubjects(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.ProtectionOfHumanSubjects protectionOfHumanSubjects);
820
821
822
823
824 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.ProtectionOfHumanSubjects addNewProtectionOfHumanSubjects();
825
826
827
828
829 void unsetProtectionOfHumanSubjects();
830
831
832
833
834 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfWomenAndMinorities getInclusionOfWomenAndMinorities();
835
836
837
838
839 boolean isSetInclusionOfWomenAndMinorities();
840
841
842
843
844 void setInclusionOfWomenAndMinorities(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfWomenAndMinorities inclusionOfWomenAndMinorities);
845
846
847
848
849 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfWomenAndMinorities addNewInclusionOfWomenAndMinorities();
850
851
852
853
854 void unsetInclusionOfWomenAndMinorities();
855
856
857
858
859 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.TargetedPlannedEnrollmentTable getTargetedPlannedEnrollmentTable();
860
861
862
863
864 boolean isSetTargetedPlannedEnrollmentTable();
865
866
867
868
869 void setTargetedPlannedEnrollmentTable(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.TargetedPlannedEnrollmentTable targetedPlannedEnrollmentTable);
870
871
872
873
874 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.TargetedPlannedEnrollmentTable addNewTargetedPlannedEnrollmentTable();
875
876
877
878
879 void unsetTargetedPlannedEnrollmentTable();
880
881
882
883
884 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfChildren getInclusionOfChildren();
885
886
887
888
889 boolean isSetInclusionOfChildren();
890
891
892
893
894 void setInclusionOfChildren(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfChildren inclusionOfChildren);
895
896
897
898
899 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfChildren addNewInclusionOfChildren();
900
901
902
903
904 void unsetInclusionOfChildren();
905
906
907
908
909
910
911 public interface ProtectionOfHumanSubjects extends org.apache.xmlbeans.XmlObject
912 {
913 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
914 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ProtectionOfHumanSubjects.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("protectionofhumansubjects02e0elemtype");
915
916
917
918
919 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
920
921
922
923
924 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
925
926
927
928
929 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
930
931
932
933
934
935
936 public static final class Factory
937 {
938 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.ProtectionOfHumanSubjects newInstance() {
939 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.ProtectionOfHumanSubjects) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
940
941 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.ProtectionOfHumanSubjects newInstance(org.apache.xmlbeans.XmlOptions options) {
942 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.ProtectionOfHumanSubjects) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
943
944 private Factory() { }
945 }
946 }
947
948
949
950
951
952
953 public interface InclusionOfWomenAndMinorities extends org.apache.xmlbeans.XmlObject
954 {
955 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
956 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(InclusionOfWomenAndMinorities.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("inclusionofwomenandminorities6261elemtype");
957
958
959
960
961 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
962
963
964
965
966 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
967
968
969
970
971 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
972
973
974
975
976
977
978 public static final class Factory
979 {
980 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfWomenAndMinorities newInstance() {
981 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfWomenAndMinorities) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
982
983 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfWomenAndMinorities newInstance(org.apache.xmlbeans.XmlOptions options) {
984 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfWomenAndMinorities) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
985
986 private Factory() { }
987 }
988 }
989
990
991
992
993
994
995 public interface TargetedPlannedEnrollmentTable extends org.apache.xmlbeans.XmlObject
996 {
997 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
998 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TargetedPlannedEnrollmentTable.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("targetedplannedenrollmenttablec4beelemtype");
999
1000
1001
1002
1003 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1004
1005
1006
1007
1008 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1009
1010
1011
1012
1013 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1014
1015
1016
1017
1018
1019
1020 public static final class Factory
1021 {
1022 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.TargetedPlannedEnrollmentTable newInstance() {
1023 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.TargetedPlannedEnrollmentTable) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1024
1025 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.TargetedPlannedEnrollmentTable newInstance(org.apache.xmlbeans.XmlOptions options) {
1026 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.TargetedPlannedEnrollmentTable) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1027
1028 private Factory() { }
1029 }
1030 }
1031
1032
1033
1034
1035
1036
1037 public interface InclusionOfChildren extends org.apache.xmlbeans.XmlObject
1038 {
1039 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1040 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(InclusionOfChildren.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("inclusionofchildrenc352elemtype");
1041
1042
1043
1044
1045 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1046
1047
1048
1049
1050 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1051
1052
1053
1054
1055 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1056
1057
1058
1059
1060
1061
1062 public static final class Factory
1063 {
1064 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfChildren newInstance() {
1065 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfChildren) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1066
1067 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfChildren newInstance(org.apache.xmlbeans.XmlOptions options) {
1068 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection.InclusionOfChildren) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1069
1070 private Factory() { }
1071 }
1072 }
1073
1074
1075
1076
1077
1078
1079 public static final class Factory
1080 {
1081 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection newInstance() {
1082 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1083
1084 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection newInstance(org.apache.xmlbeans.XmlOptions options) {
1085 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.HumanSubjectSection) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1086
1087 private Factory() { }
1088 }
1089 }
1090
1091
1092
1093
1094
1095
1096 public interface OtherResearchPlanSections extends org.apache.xmlbeans.XmlObject
1097 {
1098 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1099 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(OtherResearchPlanSections.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("otherresearchplansectionse0d4elemtype");
1100
1101
1102
1103
1104 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.VertebrateAnimals getVertebrateAnimals();
1105
1106
1107
1108
1109 boolean isSetVertebrateAnimals();
1110
1111
1112
1113
1114 void setVertebrateAnimals(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.VertebrateAnimals vertebrateAnimals);
1115
1116
1117
1118
1119 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.VertebrateAnimals addNewVertebrateAnimals();
1120
1121
1122
1123
1124 void unsetVertebrateAnimals();
1125
1126
1127
1128
1129 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.SelectAgentResearch getSelectAgentResearch();
1130
1131
1132
1133
1134 boolean isSetSelectAgentResearch();
1135
1136
1137
1138
1139 void setSelectAgentResearch(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.SelectAgentResearch selectAgentResearch);
1140
1141
1142
1143
1144 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.SelectAgentResearch addNewSelectAgentResearch();
1145
1146
1147
1148
1149 void unsetSelectAgentResearch();
1150
1151
1152
1153
1154 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.MultiplePILeadershipPlan getMultiplePILeadershipPlan();
1155
1156
1157
1158
1159 boolean isSetMultiplePILeadershipPlan();
1160
1161
1162
1163
1164 void setMultiplePILeadershipPlan(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.MultiplePILeadershipPlan multiplePILeadershipPlan);
1165
1166
1167
1168
1169 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.MultiplePILeadershipPlan addNewMultiplePILeadershipPlan();
1170
1171
1172
1173
1174 void unsetMultiplePILeadershipPlan();
1175
1176
1177
1178
1179 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ConsortiumContractualArrangements getConsortiumContractualArrangements();
1180
1181
1182
1183
1184 boolean isSetConsortiumContractualArrangements();
1185
1186
1187
1188
1189 void setConsortiumContractualArrangements(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ConsortiumContractualArrangements consortiumContractualArrangements);
1190
1191
1192
1193
1194 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ConsortiumContractualArrangements addNewConsortiumContractualArrangements();
1195
1196
1197
1198
1199 void unsetConsortiumContractualArrangements();
1200
1201
1202
1203
1204 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.LettersOfSupport getLettersOfSupport();
1205
1206
1207
1208
1209 boolean isSetLettersOfSupport();
1210
1211
1212
1213
1214 void setLettersOfSupport(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.LettersOfSupport lettersOfSupport);
1215
1216
1217
1218
1219 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.LettersOfSupport addNewLettersOfSupport();
1220
1221
1222
1223
1224 void unsetLettersOfSupport();
1225
1226
1227
1228
1229 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ResourceSharingPlans getResourceSharingPlans();
1230
1231
1232
1233
1234 boolean isSetResourceSharingPlans();
1235
1236
1237
1238
1239 void setResourceSharingPlans(gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ResourceSharingPlans resourceSharingPlans);
1240
1241
1242
1243
1244 gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ResourceSharingPlans addNewResourceSharingPlans();
1245
1246
1247
1248
1249 void unsetResourceSharingPlans();
1250
1251
1252
1253
1254
1255
1256 public interface VertebrateAnimals extends org.apache.xmlbeans.XmlObject
1257 {
1258 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1259 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(VertebrateAnimals.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("vertebrateanimals197felemtype");
1260
1261
1262
1263
1264 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1265
1266
1267
1268
1269 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1270
1271
1272
1273
1274 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1275
1276
1277
1278
1279
1280
1281 public static final class Factory
1282 {
1283 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.VertebrateAnimals newInstance() {
1284 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.VertebrateAnimals) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1285
1286 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.VertebrateAnimals newInstance(org.apache.xmlbeans.XmlOptions options) {
1287 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.VertebrateAnimals) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1288
1289 private Factory() { }
1290 }
1291 }
1292
1293
1294
1295
1296
1297
1298 public interface SelectAgentResearch extends org.apache.xmlbeans.XmlObject
1299 {
1300 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1301 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(SelectAgentResearch.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("selectagentresearchae64elemtype");
1302
1303
1304
1305
1306 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1307
1308
1309
1310
1311 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1312
1313
1314
1315
1316 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1317
1318
1319
1320
1321
1322
1323 public static final class Factory
1324 {
1325 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.SelectAgentResearch newInstance() {
1326 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.SelectAgentResearch) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1327
1328 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.SelectAgentResearch newInstance(org.apache.xmlbeans.XmlOptions options) {
1329 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.SelectAgentResearch) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1330
1331 private Factory() { }
1332 }
1333 }
1334
1335
1336
1337
1338
1339
1340 public interface MultiplePILeadershipPlan extends org.apache.xmlbeans.XmlObject
1341 {
1342 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1343 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(MultiplePILeadershipPlan.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("multiplepileadershipplancf81elemtype");
1344
1345
1346
1347
1348 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1349
1350
1351
1352
1353 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1354
1355
1356
1357
1358 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1359
1360
1361
1362
1363
1364
1365 public static final class Factory
1366 {
1367 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.MultiplePILeadershipPlan newInstance() {
1368 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.MultiplePILeadershipPlan) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1369
1370 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.MultiplePILeadershipPlan newInstance(org.apache.xmlbeans.XmlOptions options) {
1371 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.MultiplePILeadershipPlan) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1372
1373 private Factory() { }
1374 }
1375 }
1376
1377
1378
1379
1380
1381
1382 public interface ConsortiumContractualArrangements extends org.apache.xmlbeans.XmlObject
1383 {
1384 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1385 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ConsortiumContractualArrangements.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("consortiumcontractualarrangements61d2elemtype");
1386
1387
1388
1389
1390 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1391
1392
1393
1394
1395 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1396
1397
1398
1399
1400 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1401
1402
1403
1404
1405
1406
1407 public static final class Factory
1408 {
1409 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ConsortiumContractualArrangements newInstance() {
1410 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ConsortiumContractualArrangements) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1411
1412 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ConsortiumContractualArrangements newInstance(org.apache.xmlbeans.XmlOptions options) {
1413 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ConsortiumContractualArrangements) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1414
1415 private Factory() { }
1416 }
1417 }
1418
1419
1420
1421
1422
1423
1424 public interface LettersOfSupport extends org.apache.xmlbeans.XmlObject
1425 {
1426 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1427 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(LettersOfSupport.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("lettersofsupporta68delemtype");
1428
1429
1430
1431
1432 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1433
1434
1435
1436
1437 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1438
1439
1440
1441
1442 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1443
1444
1445
1446
1447
1448
1449 public static final class Factory
1450 {
1451 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.LettersOfSupport newInstance() {
1452 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.LettersOfSupport) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1453
1454 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.LettersOfSupport newInstance(org.apache.xmlbeans.XmlOptions options) {
1455 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.LettersOfSupport) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1456
1457 private Factory() { }
1458 }
1459 }
1460
1461
1462
1463
1464
1465
1466 public interface ResourceSharingPlans extends org.apache.xmlbeans.XmlObject
1467 {
1468 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
1469 org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ResourceSharingPlans.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sEAFA503253B0B59D5509A37AD48F2343").resolveHandle("resourcesharingplansacfcelemtype");
1470
1471
1472
1473
1474 gov.grants.apply.system.attachmentsV10.AttachedFileDataType getAttFile();
1475
1476
1477
1478
1479 void setAttFile(gov.grants.apply.system.attachmentsV10.AttachedFileDataType attFile);
1480
1481
1482
1483
1484 gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewAttFile();
1485
1486
1487
1488
1489
1490
1491 public static final class Factory
1492 {
1493 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ResourceSharingPlans newInstance() {
1494 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ResourceSharingPlans) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1495
1496 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ResourceSharingPlans newInstance(org.apache.xmlbeans.XmlOptions options) {
1497 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections.ResourceSharingPlans) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1498
1499 private Factory() { }
1500 }
1501 }
1502
1503
1504
1505
1506
1507
1508 public static final class Factory
1509 {
1510 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections newInstance() {
1511 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1512
1513 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections newInstance(org.apache.xmlbeans.XmlOptions options) {
1514 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments.OtherResearchPlanSections) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1515
1516 private Factory() { }
1517 }
1518 }
1519
1520
1521
1522
1523
1524
1525 public static final class Factory
1526 {
1527 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments newInstance() {
1528 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1529
1530 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments newInstance(org.apache.xmlbeans.XmlOptions options) {
1531 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan.ResearchPlanAttachments) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1532
1533 private Factory() { }
1534 }
1535 }
1536
1537
1538
1539
1540
1541
1542 public static final class Factory
1543 {
1544 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan newInstance() {
1545 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1546
1547 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan newInstance(org.apache.xmlbeans.XmlOptions options) {
1548 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument.PHS398ResearchPlan) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1549
1550 private Factory() { }
1551 }
1552 }
1553
1554
1555
1556
1557
1558
1559 public static final class Factory
1560 {
1561 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument newInstance() {
1562 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
1563
1564 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
1565 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
1566
1567
1568 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
1569 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
1570
1571 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
1572 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
1573
1574
1575 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1576 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
1577
1578 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1579 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
1580
1581 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1582 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
1583
1584 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1585 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
1586
1587 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1588 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
1589
1590 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1591 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
1592
1593 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1594 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
1595
1596 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
1597 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
1598
1599 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
1600 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
1601
1602 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
1603 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
1604
1605 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
1606 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
1607
1608 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
1609 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
1610
1611
1612 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
1613 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
1614
1615
1616 public static gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
1617 return (gov.grants.apply.forms.phs398ResearchPlanV11.PHS398ResearchPlanDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
1618
1619
1620 public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
1621 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
1622
1623
1624 public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
1625 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
1626
1627 private Factory() { }
1628 }
1629 }