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 package org.jomc.cli.commands;
37
38 import java.util.logging.Level;
39 import org.apache.commons.cli.CommandLine;
40 import org.jomc.tools.SourceFileProcessor;
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
65
66
67 public abstract class AbstractSourceFileProcessorCommand extends AbstractJomcToolCommand
68 {
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84 protected SourceFileProcessor createSourceFileProcessor( final CommandLine commandLine )
85 throws CommandExecutionException
86 {
87 if ( commandLine == null )
88 {
89 throw new NullPointerException( "commandLine" );
90 }
91
92 final String className = commandLine.hasOption( this.getSourceFileProcessorOption().getOpt() )
93 ? commandLine.getOptionValue( this.getSourceFileProcessorOption().getOpt() )
94 : SourceFileProcessor.class.getName();
95
96 return this.createJomcTool( className, SourceFileProcessor.class, commandLine );
97 }
98
99
100 protected final void executeCommand( final CommandLine commandLine ) throws CommandExecutionException
101 {
102 if ( commandLine == null )
103 {
104 throw new NullPointerException( "commandLine" );
105 }
106
107 if ( commandLine.hasOption( this.getNoSourceProcessingOption().getOpt() ) )
108 {
109 this.log( Level.INFO, this.getDisabledMessage( this.getLocale() ), null );
110 }
111 else
112 {
113 this.processSourceFiles( commandLine );
114 }
115 }
116
117
118
119
120
121
122
123
124 protected abstract void processSourceFiles( final CommandLine commandLine ) throws CommandExecutionException;
125
126
127
128
129
130 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
131 public AbstractSourceFileProcessorCommand()
132 {
133
134 super();
135
136 }
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153 @SuppressWarnings("unused")
154 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
155 private org.apache.commons.cli.Option getClasspathOption()
156 {
157 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ClasspathOption" );
158 assert _d != null : "'ClasspathOption' dependency not found.";
159 return _d;
160 }
161
162
163
164
165
166
167
168
169
170
171
172
173 @SuppressWarnings("unused")
174 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
175 private org.apache.commons.cli.Option getCountryOption()
176 {
177 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "CountryOption" );
178 assert _d != null : "'CountryOption' dependency not found.";
179 return _d;
180 }
181
182
183
184
185
186
187
188
189
190
191
192
193 @SuppressWarnings("unused")
194 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
195 private org.apache.commons.cli.Option getDefaultTemplateEncodingOption()
196 {
197 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "DefaultTemplateEncodingOption" );
198 assert _d != null : "'DefaultTemplateEncodingOption' dependency not found.";
199 return _d;
200 }
201
202
203
204
205
206
207
208
209
210
211
212
213 @SuppressWarnings("unused")
214 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
215 private org.apache.commons.cli.Option getDefaultTemplateProfileOption()
216 {
217 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "DefaultTemplateProfileOption" );
218 assert _d != null : "'DefaultTemplateProfileOption' dependency not found.";
219 return _d;
220 }
221
222
223
224
225
226
227
228
229
230
231
232
233 @SuppressWarnings("unused")
234 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
235 private org.apache.commons.cli.Option getDocumentsOption()
236 {
237 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "DocumentsOption" );
238 assert _d != null : "'DocumentsOption' dependency not found.";
239 return _d;
240 }
241
242
243
244
245
246
247
248
249
250
251
252
253 @SuppressWarnings("unused")
254 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
255 private org.apache.commons.cli.Option getImplementationOption()
256 {
257 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ImplementationOption" );
258 assert _d != null : "'ImplementationOption' dependency not found.";
259 return _d;
260 }
261
262
263
264
265
266
267
268
269
270
271
272
273 @SuppressWarnings("unused")
274 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
275 private org.apache.commons.cli.Option getIndentationStringOption()
276 {
277 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "IndentationStringOption" );
278 assert _d != null : "'IndentationStringOption' dependency not found.";
279 return _d;
280 }
281
282
283
284
285
286
287
288
289
290
291
292
293 @SuppressWarnings("unused")
294 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
295 private org.apache.commons.cli.Option getInputEncodingOption()
296 {
297 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "InputEncodingOption" );
298 assert _d != null : "'InputEncodingOption' dependency not found.";
299 return _d;
300 }
301
302
303
304
305
306
307
308
309
310
311
312
313 @SuppressWarnings("unused")
314 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
315 private org.apache.commons.cli.Option getLanguageOption()
316 {
317 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "LanguageOption" );
318 assert _d != null : "'LanguageOption' dependency not found.";
319 return _d;
320 }
321
322
323
324
325
326
327
328
329
330
331
332
333 @SuppressWarnings("unused")
334 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
335 private org.apache.commons.cli.Option getLineSeparatorOption()
336 {
337 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "LineSeparatorOption" );
338 assert _d != null : "'LineSeparatorOption' dependency not found.";
339 return _d;
340 }
341
342
343
344
345
346
347
348
349
350
351
352
353 @SuppressWarnings("unused")
354 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
355 private java.util.Locale getLocale()
356 {
357 final java.util.Locale _d = (java.util.Locale) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Locale" );
358 assert _d != null : "'Locale' dependency not found.";
359 return _d;
360 }
361
362
363
364
365
366
367
368
369
370
371
372
373 @SuppressWarnings("unused")
374 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
375 private org.apache.commons.cli.Option getLocaleVariantOption()
376 {
377 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "LocaleVariantOption" );
378 assert _d != null : "'LocaleVariantOption' dependency not found.";
379 return _d;
380 }
381
382
383
384
385
386
387
388
389
390
391
392
393 @SuppressWarnings("unused")
394 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
395 private org.apache.commons.cli.Option getModelContextFactoryOption()
396 {
397 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ModelContextFactoryOption" );
398 assert _d != null : "'ModelContextFactoryOption' dependency not found.";
399 return _d;
400 }
401
402
403
404
405
406
407
408
409
410
411
412
413 @SuppressWarnings("unused")
414 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
415 private org.apache.commons.cli.Option getModelOption()
416 {
417 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ModelOption" );
418 assert _d != null : "'ModelOption' dependency not found.";
419 return _d;
420 }
421
422
423
424
425
426
427
428
429
430
431
432
433 @SuppressWarnings("unused")
434 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
435 private org.apache.commons.cli.Option getModletLocationOption()
436 {
437 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ModletLocationOption" );
438 assert _d != null : "'ModletLocationOption' dependency not found.";
439 return _d;
440 }
441
442
443
444
445
446
447
448
449
450
451
452
453 @SuppressWarnings("unused")
454 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
455 private org.apache.commons.cli.Option getModletSchemaSystemIdOption()
456 {
457 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ModletSchemaSystemIdOption" );
458 assert _d != null : "'ModletSchemaSystemIdOption' dependency not found.";
459 return _d;
460 }
461
462
463
464
465
466
467
468
469
470
471
472
473 @SuppressWarnings("unused")
474 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
475 private org.apache.commons.cli.Option getModuleLocationOption()
476 {
477 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ModuleLocationOption" );
478 assert _d != null : "'ModuleLocationOption' dependency not found.";
479 return _d;
480 }
481
482
483
484
485
486
487
488
489
490
491
492
493 @SuppressWarnings("unused")
494 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
495 private org.apache.commons.cli.Option getModuleNameOption()
496 {
497 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ModuleNameOption" );
498 assert _d != null : "'ModuleNameOption' dependency not found.";
499 return _d;
500 }
501
502
503
504
505
506
507
508
509
510
511
512
513 @SuppressWarnings("unused")
514 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
515 private org.apache.commons.cli.Option getNoClasspathResolutionOption()
516 {
517 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "NoClasspathResolutionOption" );
518 assert _d != null : "'NoClasspathResolutionOption' dependency not found.";
519 return _d;
520 }
521
522
523
524
525
526
527
528
529
530
531
532
533 @SuppressWarnings("unused")
534 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
535 private org.apache.commons.cli.Option getNoModelProcessingOption()
536 {
537 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "NoModelProcessingOption" );
538 assert _d != null : "'NoModelProcessingOption' dependency not found.";
539 return _d;
540 }
541
542
543
544
545
546
547
548
549
550
551
552
553 @SuppressWarnings("unused")
554 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
555 private org.apache.commons.cli.Option getNoModelResourceValidation()
556 {
557 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "NoModelResourceValidation" );
558 assert _d != null : "'NoModelResourceValidation' dependency not found.";
559 return _d;
560 }
561
562
563
564
565
566
567
568
569
570
571
572
573 @SuppressWarnings("unused")
574 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
575 private org.apache.commons.cli.Option getNoModletResourceValidation()
576 {
577 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "NoModletResourceValidation" );
578 assert _d != null : "'NoModletResourceValidation' dependency not found.";
579 return _d;
580 }
581
582
583
584
585
586
587
588
589
590
591
592
593 @SuppressWarnings("unused")
594 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
595 private org.apache.commons.cli.Option getNoSourceProcessingOption()
596 {
597 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "NoSourceProcessingOption" );
598 assert _d != null : "'NoSourceProcessingOption' dependency not found.";
599 return _d;
600 }
601
602
603
604
605
606
607
608
609
610
611
612
613 @SuppressWarnings("unused")
614 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
615 private org.apache.commons.cli.Option getOutputEncodingOption()
616 {
617 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "OutputEncodingOption" );
618 assert _d != null : "'OutputEncodingOption' dependency not found.";
619 return _d;
620 }
621
622
623
624
625
626
627
628
629
630
631
632
633 @SuppressWarnings("unused")
634 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
635 private org.apache.commons.cli.Option getPlatformProviderLocationOption()
636 {
637 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "PlatformProviderLocationOption" );
638 assert _d != null : "'PlatformProviderLocationOption' dependency not found.";
639 return _d;
640 }
641
642
643
644
645
646
647
648
649
650
651
652
653 @SuppressWarnings("unused")
654 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
655 private org.apache.commons.cli.Option getProviderLocationOption()
656 {
657 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "ProviderLocationOption" );
658 assert _d != null : "'ProviderLocationOption' dependency not found.";
659 return _d;
660 }
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687 @SuppressWarnings("unused")
688 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
689 private org.apache.commons.cli.Option getSourceDirectoryOption()
690 {
691 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "SourceDirectoryOption" );
692 assert _d != null : "'SourceDirectoryOption' dependency not found.";
693 return _d;
694 }
695
696
697
698
699
700
701
702
703
704
705
706
707 @SuppressWarnings("unused")
708 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
709 private org.apache.commons.cli.Option getSourceFileProcessorOption()
710 {
711 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "SourceFileProcessorOption" );
712 assert _d != null : "'SourceFileProcessorOption' dependency not found.";
713 return _d;
714 }
715
716
717
718
719
720
721
722
723
724
725
726
727 @SuppressWarnings("unused")
728 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
729 private org.apache.commons.cli.Option getSpecificationOption()
730 {
731 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "SpecificationOption" );
732 assert _d != null : "'SpecificationOption' dependency not found.";
733 return _d;
734 }
735
736
737
738
739
740
741
742
743
744
745
746
747 @Deprecated
748 @SuppressWarnings("unused")
749 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
750 private org.apache.commons.cli.Option getTemplateEncodingOption()
751 {
752 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "TemplateEncodingOption" );
753 assert _d != null : "'TemplateEncodingOption' dependency not found.";
754 return _d;
755 }
756
757
758
759
760
761
762
763
764
765
766
767
768 @SuppressWarnings("unused")
769 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
770 private org.apache.commons.cli.Option getTemplateLocationOption()
771 {
772 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "TemplateLocationOption" );
773 assert _d != null : "'TemplateLocationOption' dependency not found.";
774 return _d;
775 }
776
777
778
779
780
781
782
783
784
785
786
787
788 @SuppressWarnings("unused")
789 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
790 private org.apache.commons.cli.Option getTemplateProfileOption()
791 {
792 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "TemplateProfileOption" );
793 assert _d != null : "'TemplateProfileOption' dependency not found.";
794 return _d;
795 }
796
797
798
799
800
801
802
803
804
805
806
807
808 @SuppressWarnings("unused")
809 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
810 private org.apache.commons.cli.Option getTransformerLocationOption()
811 {
812 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "TransformerLocationOption" );
813 assert _d != null : "'TransformerLocationOption' dependency not found.";
814 return _d;
815 }
816
817
818
819
820
821
822
823
824
825
826
827
828 @SuppressWarnings("unused")
829 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
830 private java.lang.String getAbbreviatedCommandName()
831 {
832 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "abbreviatedCommandName" );
833 assert _p != null : "'abbreviatedCommandName' property not found.";
834 return _p;
835 }
836
837
838
839
840
841
842
843
844 @SuppressWarnings("unused")
845 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
846 private java.lang.String getApplicationModlet()
847 {
848 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "applicationModlet" );
849 assert _p != null : "'applicationModlet' property not found.";
850 return _p;
851 }
852
853
854
855
856
857
858
859
860 @SuppressWarnings("unused")
861 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
862 private java.lang.String getCommandName()
863 {
864 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "commandName" );
865 assert _p != null : "'commandName' property not found.";
866 return _p;
867 }
868
869
870
871
872
873
874
875
876 @SuppressWarnings("unused")
877 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
878 private java.lang.String getModletExcludes()
879 {
880 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "modletExcludes" );
881 assert _p != null : "'modletExcludes' property not found.";
882 return _p;
883 }
884
885
886
887
888
889
890
891
892 @SuppressWarnings("unused")
893 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
894 private java.lang.String getProviderExcludes()
895 {
896 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "providerExcludes" );
897 assert _p != null : "'providerExcludes' property not found.";
898 return _p;
899 }
900
901
902
903
904
905
906
907
908 @SuppressWarnings("unused")
909 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
910 private java.lang.String getSchemaExcludes()
911 {
912 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "schemaExcludes" );
913 assert _p != null : "'schemaExcludes' property not found.";
914 return _p;
915 }
916
917
918
919
920
921
922
923
924 @SuppressWarnings("unused")
925 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
926 private java.lang.String getServiceExcludes()
927 {
928 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "serviceExcludes" );
929 assert _p != null : "'serviceExcludes' property not found.";
930 return _p;
931 }
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947 @SuppressWarnings("unused")
948 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
949 private String getApplicationTitle( final java.util.Locale locale )
950 {
951 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "applicationTitle", locale );
952 assert _m != null : "'applicationTitle' message not found.";
953 return _m;
954 }
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969 @SuppressWarnings("unused")
970 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
971 private String getCannotProcessMessage( final java.util.Locale locale, final java.lang.String itemInfo, final java.lang.String detailMessage )
972 {
973 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "cannotProcessMessage", locale, itemInfo, detailMessage );
974 assert _m != null : "'cannotProcessMessage' message not found.";
975 return _m;
976 }
977
978
979
980
981
982
983
984
985
986
987
988
989
990 @SuppressWarnings("unused")
991 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
992 private String getClasspathElementInfo( final java.util.Locale locale, final java.lang.String classpathElement )
993 {
994 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "classpathElementInfo", locale, classpathElement );
995 assert _m != null : "'classpathElementInfo' message not found.";
996 return _m;
997 }
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011 @SuppressWarnings("unused")
1012 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1013 private String getClasspathElementNotFoundWarning( final java.util.Locale locale, final java.lang.String fileName )
1014 {
1015 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "classpathElementNotFoundWarning", locale, fileName );
1016 assert _m != null : "'classpathElementNotFoundWarning' message not found.";
1017 return _m;
1018 }
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032 @SuppressWarnings("unused")
1033 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1034 private String getCommandFailureMessage( final java.util.Locale locale, final java.lang.String toolName )
1035 {
1036 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "commandFailureMessage", locale, toolName );
1037 assert _m != null : "'commandFailureMessage' message not found.";
1038 return _m;
1039 }
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053 @SuppressWarnings("unused")
1054 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1055 private String getCommandInfoMessage( final java.util.Locale locale, final java.lang.String toolName )
1056 {
1057 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "commandInfoMessage", locale, toolName );
1058 assert _m != null : "'commandInfoMessage' message not found.";
1059 return _m;
1060 }
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074 @SuppressWarnings("unused")
1075 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1076 private String getCommandSuccessMessage( final java.util.Locale locale, final java.lang.String toolName )
1077 {
1078 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "commandSuccessMessage", locale, toolName );
1079 assert _m != null : "'commandSuccessMessage' message not found.";
1080 return _m;
1081 }
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095 @SuppressWarnings("unused")
1096 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1097 private String getDefaultLogLevelInfo( final java.util.Locale locale, final java.lang.String defaultLogLevel )
1098 {
1099 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "defaultLogLevelInfo", locale, defaultLogLevel );
1100 assert _m != null : "'defaultLogLevelInfo' message not found.";
1101 return _m;
1102 }
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117 @SuppressWarnings("unused")
1118 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1119 private String getDeprecatedOptionMessage( final java.util.Locale locale, final java.lang.String deprecatedOption, final java.lang.String replacementOption )
1120 {
1121 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "deprecatedOptionMessage", locale, deprecatedOption, replacementOption );
1122 assert _m != null : "'deprecatedOptionMessage' message not found.";
1123 return _m;
1124 }
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137 @SuppressWarnings("unused")
1138 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1139 private String getDisabledMessage( final java.util.Locale locale )
1140 {
1141 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "disabledMessage", locale );
1142 assert _m != null : "'disabledMessage' message not found.";
1143 return _m;
1144 }
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158 @SuppressWarnings("unused")
1159 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1160 private String getDocumentFileInfo( final java.util.Locale locale, final java.lang.String documentFile )
1161 {
1162 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "documentFileInfo", locale, documentFile );
1163 assert _m != null : "'documentFileInfo' message not found.";
1164 return _m;
1165 }
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179 @SuppressWarnings("unused")
1180 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1181 private String getDocumentFileNotFoundWarning( final java.util.Locale locale, final java.lang.String fileName )
1182 {
1183 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "documentFileNotFoundWarning", locale, fileName );
1184 assert _m != null : "'documentFileNotFoundWarning' message not found.";
1185 return _m;
1186 }
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201 @SuppressWarnings("unused")
1202 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1203 private String getExcludedModletInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String modletIdentifier )
1204 {
1205 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "excludedModletInfo", locale, resourceName, modletIdentifier );
1206 assert _m != null : "'excludedModletInfo' message not found.";
1207 return _m;
1208 }
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223 @SuppressWarnings("unused")
1224 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1225 private String getExcludedProviderInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String providerName )
1226 {
1227 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "excludedProviderInfo", locale, resourceName, providerName );
1228 assert _m != null : "'excludedProviderInfo' message not found.";
1229 return _m;
1230 }
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245 @SuppressWarnings("unused")
1246 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1247 private String getExcludedSchemaInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String contextId )
1248 {
1249 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "excludedSchemaInfo", locale, resourceName, contextId );
1250 assert _m != null : "'excludedSchemaInfo' message not found.";
1251 return _m;
1252 }
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267 @SuppressWarnings("unused")
1268 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1269 private String getExcludedServiceInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String serviceName )
1270 {
1271 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "excludedServiceInfo", locale, resourceName, serviceName );
1272 assert _m != null : "'excludedServiceInfo' message not found.";
1273 return _m;
1274 }
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288 @SuppressWarnings("unused")
1289 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1290 private String getFailedCreatingObjectMessage( final java.util.Locale locale, final java.lang.String objectInfo )
1291 {
1292 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "failedCreatingObjectMessage", locale, objectInfo );
1293 assert _m != null : "'failedCreatingObjectMessage' message not found.";
1294 return _m;
1295 }
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309 @SuppressWarnings("unused")
1310 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1311 private String getImplementationNotFoundWarning( final java.util.Locale locale, final java.lang.String implementationIdentifier )
1312 {
1313 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "implementationNotFoundWarning", locale, implementationIdentifier );
1314 assert _m != null : "'implementationNotFoundWarning' message not found.";
1315 return _m;
1316 }
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330 @SuppressWarnings("unused")
1331 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1332 private String getInvalidModelMessage( final java.util.Locale locale, final java.lang.String modelIdentifier )
1333 {
1334 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "invalidModelMessage", locale, modelIdentifier );
1335 assert _m != null : "'invalidModelMessage' message not found.";
1336 return _m;
1337 }
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349 @SuppressWarnings("unused")
1350 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1351 private String getLongDescriptionMessage( final java.util.Locale locale )
1352 {
1353 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "longDescriptionMessage", locale );
1354 assert _m != null : "'longDescriptionMessage' message not found.";
1355 return _m;
1356 }
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370 @SuppressWarnings("unused")
1371 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1372 private String getModuleNotFoundWarning( final java.util.Locale locale, final java.lang.String moduleName )
1373 {
1374 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "moduleNotFoundWarning", locale, moduleName );
1375 assert _m != null : "'moduleNotFoundWarning' message not found.";
1376 return _m;
1377 }
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391 @SuppressWarnings("unused")
1392 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1393 private String getReadingMessage( final java.util.Locale locale, final java.lang.String locationInfo )
1394 {
1395 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "readingMessage", locale, locationInfo );
1396 assert _m != null : "'readingMessage' message not found.";
1397 return _m;
1398 }
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410 @SuppressWarnings("unused")
1411 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1412 private String getSeparator( final java.util.Locale locale )
1413 {
1414 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "separator", locale );
1415 assert _m != null : "'separator' message not found.";
1416 return _m;
1417 }
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429 @SuppressWarnings("unused")
1430 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1431 private String getShortDescriptionMessage( final java.util.Locale locale )
1432 {
1433 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "shortDescriptionMessage", locale );
1434 assert _m != null : "'shortDescriptionMessage' message not found.";
1435 return _m;
1436 }
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450 @SuppressWarnings("unused")
1451 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1452 private String getSpecificationNotFoundWarning( final java.util.Locale locale, final java.lang.String specificationIdentifier )
1453 {
1454 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "specificationNotFoundWarning", locale, specificationIdentifier );
1455 assert _m != null : "'specificationNotFoundWarning' message not found.";
1456 return _m;
1457 }
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" )
1603 @Override
1604 public org.apache.commons.cli.Options getOptions()
1605 {
1606 final org.apache.commons.cli.Options options = new org.apache.commons.cli.Options();
1607 options.addOption( this.getClasspathOption() );
1608 options.addOption( this.getCountryOption() );
1609 options.addOption( this.getDefaultTemplateEncodingOption() );
1610 options.addOption( this.getDefaultTemplateProfileOption() );
1611 options.addOption( this.getDocumentsOption() );
1612 options.addOption( this.getImplementationOption() );
1613 options.addOption( this.getIndentationStringOption() );
1614 options.addOption( this.getInputEncodingOption() );
1615 options.addOption( this.getLanguageOption() );
1616 options.addOption( this.getLineSeparatorOption() );
1617 options.addOption( this.getLocaleVariantOption() );
1618 options.addOption( this.getModelContextFactoryOption() );
1619 options.addOption( this.getModelOption() );
1620 options.addOption( this.getModletLocationOption() );
1621 options.addOption( this.getModletSchemaSystemIdOption() );
1622 options.addOption( this.getModuleLocationOption() );
1623 options.addOption( this.getModuleNameOption() );
1624 options.addOption( this.getNoClasspathResolutionOption() );
1625 options.addOption( this.getNoModelProcessingOption() );
1626 options.addOption( this.getNoModelResourceValidation() );
1627 options.addOption( this.getNoModletResourceValidation() );
1628 options.addOption( this.getNoSourceProcessingOption() );
1629 options.addOption( this.getOutputEncodingOption() );
1630 options.addOption( this.getPlatformProviderLocationOption() );
1631 options.addOption( this.getProviderLocationOption() );
1632 options.addOption( this.getSourceDirectoryOption() );
1633 options.addOption( this.getSourceFileProcessorOption() );
1634 options.addOption( this.getSpecificationOption() );
1635 options.addOption( this.getTemplateEncodingOption() );
1636 options.addOption( this.getTemplateLocationOption() );
1637 options.addOption( this.getTemplateProfileOption() );
1638 options.addOption( this.getTransformerLocationOption() );
1639 return options;
1640 }
1641
1642
1643 }