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