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