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