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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Classpath Option" );
165 assert _d != null : "'Classpath Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Country Option" );
185 assert _d != null : "'Country Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Default Template Encoding Option" );
205 assert _d != null : "'Default Template Encoding Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Default Template Profile Option" );
225 assert _d != null : "'Default Template Profile Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Documents Option" );
245 assert _d != null : "'Documents Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Implementation Option" );
265 assert _d != null : "'Implementation Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Indentation String Option" );
285 assert _d != null : "'Indentation String Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Input Encoding Option" );
305 assert _d != null : "'Input Encoding Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Language Option" );
325 assert _d != null : "'Language Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Line Separator Option" );
345 assert _d != null : "'Line Separator Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Locale Variant Option" );
385 assert _d != null : "'Locale Variant Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Model Context Factory Option" );
405 assert _d != null : "'Model Context Factory Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Model Option" );
425 assert _d != null : "'Model Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Modlet Location Option" );
445 assert _d != null : "'Modlet Location Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Modlet Schema System Id Option" );
465 assert _d != null : "'Modlet Schema System Id Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Module Location Option" );
485 assert _d != null : "'Module Location Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "Module Name Option" );
505 assert _d != null : "'Module Name Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
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, "No Classpath Resolution Option" );
525 assert _d != null : "'No Classpath Resolution Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
542 private org.apache.commons.cli.Option getNoJavaValidationOption()
543 {
544 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "No Java Validation Option" );
545 assert _d != null : "'No Java Validation Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
562 private org.apache.commons.cli.Option getNoModelProcessingOption()
563 {
564 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "No Model Processing Option" );
565 assert _d != null : "'No Model Processing Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
582 private org.apache.commons.cli.Option getNoModelResourceValidation()
583 {
584 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "No Model Resource Validation" );
585 assert _d != null : "'No Model Resource Validation' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
602 private org.apache.commons.cli.Option getNoModletResourceValidation()
603 {
604 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "No Modlet Resource Validation" );
605 assert _d != null : "'No Modlet Resource Validation' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
622 private org.apache.commons.cli.Option getNoResourceProcessingOption()
623 {
624 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "No Resource Processing Option" );
625 assert _d != null : "'No Resource Processing Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
642 private org.apache.commons.cli.Option getOutputEncodingOption()
643 {
644 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Output Encoding Option" );
645 assert _d != null : "'Output Encoding Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
662 private org.apache.commons.cli.Option getPlatformProviderLocationOption()
663 {
664 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Platform Provider Location Option" );
665 assert _d != null : "'Platform Provider Location Option' dependency not found.";
666 return _d;
667 }
668
669
670
671
672
673
674
675
676
677
678
679
680 @SuppressWarnings("unused")
681 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
682 private org.apache.commons.cli.Option getProviderLocationOption()
683 {
684 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Provider Location Option" );
685 assert _d != null : "'Provider Location Option' dependency not found.";
686 return _d;
687 }
688
689
690
691
692
693
694
695
696
697
698
699
700
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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
716 private org.apache.commons.cli.Option getResourceDirectoryOption()
717 {
718 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Resource Directory Option" );
719 assert _d != null : "'Resource Directory Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
736 private org.apache.commons.cli.Option getResourceFileProcessorOption()
737 {
738 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Resource File Processor Option" );
739 assert _d != null : "'Resource File Processor Option' dependency not found.";
740 return _d;
741 }
742
743
744
745
746
747
748
749
750
751
752
753
754 @SuppressWarnings("unused")
755 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
756 private org.apache.commons.cli.Option getSpecificationOption()
757 {
758 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Specification Option" );
759 assert _d != null : "'Specification Option' dependency not found.";
760 return _d;
761 }
762
763
764
765
766
767
768
769
770
771
772
773
774 @Deprecated
775 @SuppressWarnings("unused")
776 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
777 private org.apache.commons.cli.Option getTemplateEncodingOption()
778 {
779 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Template Encoding Option" );
780 assert _d != null : "'Template Encoding Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
797 private org.apache.commons.cli.Option getTemplateLocationOption()
798 {
799 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Template Location Option" );
800 assert _d != null : "'Template Location Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
817 private org.apache.commons.cli.Option getTemplateProfileOption()
818 {
819 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Template Profile Option" );
820 assert _d != null : "'Template Profile Option' 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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
837 private org.apache.commons.cli.Option getTransformerLocationOption()
838 {
839 final org.apache.commons.cli.Option _d = (org.apache.commons.cli.Option) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getDependency( this, "Transformer Location Option" );
840 assert _d != null : "'Transformer Location Option' dependency not found.";
841 return _d;
842 }
843
844
845
846
847
848
849
850
851
852
853
854
855 @SuppressWarnings("unused")
856 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
857 private java.lang.String getAbbreviatedCommandName()
858 {
859 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "Abbreviated Command Name" );
860 assert _p != null : "'Abbreviated Command Name' property not found.";
861 return _p;
862 }
863
864
865
866
867
868
869
870
871 @SuppressWarnings("unused")
872 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
873 private java.lang.String getApplicationModlet()
874 {
875 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "Application Modlet" );
876 assert _p != null : "'Application Modlet' property not found.";
877 return _p;
878 }
879
880
881
882
883
884
885
886
887 @SuppressWarnings("unused")
888 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
889 private java.lang.String getCommandName()
890 {
891 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "Command Name" );
892 assert _p != null : "'Command Name' property not found.";
893 return _p;
894 }
895
896
897
898
899
900
901
902
903 @SuppressWarnings("unused")
904 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
905 private java.lang.String getModletExcludes()
906 {
907 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "Modlet Excludes" );
908 assert _p != null : "'Modlet Excludes' property not found.";
909 return _p;
910 }
911
912
913
914
915
916
917
918
919 @SuppressWarnings("unused")
920 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
921 private java.lang.String getProviderExcludes()
922 {
923 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "Provider Excludes" );
924 assert _p != null : "'Provider Excludes' property not found.";
925 return _p;
926 }
927
928
929
930
931
932
933
934
935 @SuppressWarnings("unused")
936 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
937 private java.lang.String getSchemaExcludes()
938 {
939 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "Schema Excludes" );
940 assert _p != null : "'Schema Excludes' property not found.";
941 return _p;
942 }
943
944
945
946
947
948
949
950
951 @SuppressWarnings("unused")
952 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
953 private java.lang.String getServiceExcludes()
954 {
955 final java.lang.String _p = (java.lang.String) org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getProperty( this, "Service Excludes" );
956 assert _p != null : "'Service Excludes' property not found.";
957 return _p;
958 }
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974 @SuppressWarnings("unused")
975 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
976 private String getApplicationTitle( final java.util.Locale locale )
977 {
978 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Application Title", locale );
979 assert _m != null : "'Application Title' message not found.";
980 return _m;
981 }
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996 @SuppressWarnings("unused")
997 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
998 private String getCannotProcessMessage( final java.util.Locale locale, final java.lang.String itemInfo, final java.lang.String detailMessage )
999 {
1000 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Cannot Process Message", locale, itemInfo, detailMessage );
1001 assert _m != null : "'Cannot Process Message' message not found.";
1002 return _m;
1003 }
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017 @SuppressWarnings("unused")
1018 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1019 private String getClasspathElementInfo( final java.util.Locale locale, final java.lang.String classpathElement )
1020 {
1021 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Classpath Element Info", locale, classpathElement );
1022 assert _m != null : "'Classpath Element Info' message not found.";
1023 return _m;
1024 }
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038 @SuppressWarnings("unused")
1039 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1040 private String getClasspathElementNotFoundWarning( final java.util.Locale locale, final java.lang.String fileName )
1041 {
1042 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Classpath Element Not Found Warning", locale, fileName );
1043 assert _m != null : "'Classpath Element Not Found Warning' message not found.";
1044 return _m;
1045 }
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059 @SuppressWarnings("unused")
1060 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1061 private String getCommandFailureMessage( final java.util.Locale locale, final java.lang.String toolName )
1062 {
1063 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Command Failure Message", locale, toolName );
1064 assert _m != null : "'Command Failure Message' message not found.";
1065 return _m;
1066 }
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080 @SuppressWarnings("unused")
1081 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1082 private String getCommandInfoMessage( final java.util.Locale locale, final java.lang.String toolName )
1083 {
1084 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Command Info Message", locale, toolName );
1085 assert _m != null : "'Command Info Message' message not found.";
1086 return _m;
1087 }
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101 @SuppressWarnings("unused")
1102 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1103 private String getCommandSuccessMessage( final java.util.Locale locale, final java.lang.String toolName )
1104 {
1105 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Command Success Message", locale, toolName );
1106 assert _m != null : "'Command Success Message' message not found.";
1107 return _m;
1108 }
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122 @SuppressWarnings("unused")
1123 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1124 private String getDefaultLogLevelInfo( final java.util.Locale locale, final java.lang.String defaultLogLevel )
1125 {
1126 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Default Log Level Info", locale, defaultLogLevel );
1127 assert _m != null : "'Default Log Level Info' message not found.";
1128 return _m;
1129 }
1130
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.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1146 private String getDeprecatedOptionMessage( final java.util.Locale locale, final java.lang.String deprecatedOption, final java.lang.String replacementOption )
1147 {
1148 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Deprecated Option Message", locale, deprecatedOption, replacementOption );
1149 assert _m != null : "'Deprecated Option Message' message not found.";
1150 return _m;
1151 }
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164 @SuppressWarnings("unused")
1165 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1166 private String getDisabledMessage( final java.util.Locale locale )
1167 {
1168 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Disabled Message", locale );
1169 assert _m != null : "'Disabled Message' message not found.";
1170 return _m;
1171 }
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185 @SuppressWarnings("unused")
1186 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1187 private String getDocumentFileInfo( final java.util.Locale locale, final java.lang.String documentFile )
1188 {
1189 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Document File Info", locale, documentFile );
1190 assert _m != null : "'Document File Info' message not found.";
1191 return _m;
1192 }
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206 @SuppressWarnings("unused")
1207 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1208 private String getDocumentFileNotFoundWarning( final java.util.Locale locale, final java.lang.String fileName )
1209 {
1210 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Document File Not Found Warning", locale, fileName );
1211 assert _m != null : "'Document File Not Found Warning' message not found.";
1212 return _m;
1213 }
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228 @SuppressWarnings("unused")
1229 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1230 private String getExcludedModletInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String modletIdentifier )
1231 {
1232 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Excluded Modlet Info", locale, resourceName, modletIdentifier );
1233 assert _m != null : "'Excluded Modlet Info' message not found.";
1234 return _m;
1235 }
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250 @SuppressWarnings("unused")
1251 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1252 private String getExcludedProviderInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String providerName )
1253 {
1254 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Excluded Provider Info", locale, resourceName, providerName );
1255 assert _m != null : "'Excluded Provider Info' message not found.";
1256 return _m;
1257 }
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272 @SuppressWarnings("unused")
1273 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1274 private String getExcludedSchemaInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String contextId )
1275 {
1276 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Excluded Schema Info", locale, resourceName, contextId );
1277 assert _m != null : "'Excluded Schema Info' message not found.";
1278 return _m;
1279 }
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294 @SuppressWarnings("unused")
1295 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1296 private String getExcludedServiceInfo( final java.util.Locale locale, final java.lang.String resourceName, final java.lang.String serviceName )
1297 {
1298 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Excluded Service Info", locale, resourceName, serviceName );
1299 assert _m != null : "'Excluded Service Info' message not found.";
1300 return _m;
1301 }
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315 @SuppressWarnings("unused")
1316 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1317 private String getFailedCreatingObjectMessage( final java.util.Locale locale, final java.lang.String objectInfo )
1318 {
1319 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Failed Creating Object Message", locale, objectInfo );
1320 assert _m != null : "'Failed Creating Object Message' message not found.";
1321 return _m;
1322 }
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336 @SuppressWarnings("unused")
1337 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1338 private String getImplementationNotFoundWarning( final java.util.Locale locale, final java.lang.String implementationIdentifier )
1339 {
1340 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Implementation Not Found Warning", locale, implementationIdentifier );
1341 assert _m != null : "'Implementation Not Found Warning' message not found.";
1342 return _m;
1343 }
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357 @SuppressWarnings("unused")
1358 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1359 private String getInvalidModelMessage( final java.util.Locale locale, final java.lang.String modelIdentifier )
1360 {
1361 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Invalid Model Message", locale, modelIdentifier );
1362 assert _m != null : "'Invalid Model Message' message not found.";
1363 return _m;
1364 }
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376 @SuppressWarnings("unused")
1377 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1378 private String getLongDescriptionMessage( final java.util.Locale locale )
1379 {
1380 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Long Description Message", locale );
1381 assert _m != null : "'Long Description Message' message not found.";
1382 return _m;
1383 }
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397 @SuppressWarnings("unused")
1398 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1399 private String getModuleNotFoundWarning( final java.util.Locale locale, final java.lang.String moduleName )
1400 {
1401 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Module Not Found Warning", locale, moduleName );
1402 assert _m != null : "'Module Not Found Warning' message not found.";
1403 return _m;
1404 }
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418 @SuppressWarnings("unused")
1419 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1420 private String getReadingMessage( final java.util.Locale locale, final java.lang.String locationInfo )
1421 {
1422 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Reading Message", locale, locationInfo );
1423 assert _m != null : "'Reading Message' message not found.";
1424 return _m;
1425 }
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437 @SuppressWarnings("unused")
1438 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1439 private String getSeparator( final java.util.Locale locale )
1440 {
1441 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Separator", locale );
1442 assert _m != null : "'Separator' message not found.";
1443 return _m;
1444 }
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456 @SuppressWarnings("unused")
1457 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1458 private String getShortDescriptionMessage( final java.util.Locale locale )
1459 {
1460 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Short Description Message", locale );
1461 assert _m != null : "'Short Description Message' message not found.";
1462 return _m;
1463 }
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477 @SuppressWarnings("unused")
1478 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1479 private String getSpecificationNotFoundWarning( final java.util.Locale locale, final java.lang.String specificationIdentifier )
1480 {
1481 final String _m = org.jomc.ObjectManagerFactory.getObjectManager( this.getClass().getClassLoader() ).getMessage( this, "Specification Not Found Warning", locale, specificationIdentifier );
1482 assert _m != null : "'Specification Not Found Warning' message not found.";
1483 return _m;
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
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.5", comments = "See http://www.jomc.org/jomc/1.5/jomc-tools-1.5" )
1634 @Override
1635 public org.apache.commons.cli.Options getOptions()
1636 {
1637 final org.apache.commons.cli.Options options = new org.apache.commons.cli.Options();
1638 options.addOption( this.getClasspathOption() );
1639 options.addOption( this.getCountryOption() );
1640 options.addOption( this.getDefaultTemplateEncodingOption() );
1641 options.addOption( this.getDefaultTemplateProfileOption() );
1642 options.addOption( this.getDocumentsOption() );
1643 options.addOption( this.getImplementationOption() );
1644 options.addOption( this.getIndentationStringOption() );
1645 options.addOption( this.getInputEncodingOption() );
1646 options.addOption( this.getLanguageOption() );
1647 options.addOption( this.getLineSeparatorOption() );
1648 options.addOption( this.getLocaleVariantOption() );
1649 options.addOption( this.getModelContextFactoryOption() );
1650 options.addOption( this.getModelOption() );
1651 options.addOption( this.getModletLocationOption() );
1652 options.addOption( this.getModletSchemaSystemIdOption() );
1653 options.addOption( this.getModuleLocationOption() );
1654 options.addOption( this.getModuleNameOption() );
1655 options.addOption( this.getNoClasspathResolutionOption() );
1656 options.addOption( this.getNoJavaValidationOption() );
1657 options.addOption( this.getNoModelProcessingOption() );
1658 options.addOption( this.getNoModelResourceValidation() );
1659 options.addOption( this.getNoModletResourceValidation() );
1660 options.addOption( this.getNoResourceProcessingOption() );
1661 options.addOption( this.getOutputEncodingOption() );
1662 options.addOption( this.getPlatformProviderLocationOption() );
1663 options.addOption( this.getProviderLocationOption() );
1664 options.addOption( this.getResourceDirectoryOption() );
1665 options.addOption( this.getResourceFileProcessorOption() );
1666 options.addOption( this.getSpecificationOption() );
1667 options.addOption( this.getTemplateEncodingOption() );
1668 options.addOption( this.getTemplateLocationOption() );
1669 options.addOption( this.getTemplateProfileOption() );
1670 options.addOption( this.getTransformerLocationOption() );
1671 return options;
1672 }
1673
1674
1675 }