-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneratorComments_Java.txt_normalized.txt
1303 lines (1303 loc) · 224 KB
/
GeneratorComments_Java.txt_normalized.txt
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplcontactlocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqaclassmodellingforeignkeyrelationshipsbetweentablesofthetestNUMBERschema
com/sun/org/omg/corba/valuememberseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
testcasefortheopenwiremarshallingforconnectionerrornotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplcompanyserviceimplandrerunservicebuildertoregeneratethisclass
amultiplexinguiusedtocombine<code>spinnerui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey@sinceVERSION
at/owlsoft/owl/corbamodel/accounting/icorbareservationhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/invalidoperationexceptionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
_sqlgenerator_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatfridayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
<editor-folddefaultstate=collapseddesc=generatedgetterstringitem>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
alinerendererwithaNUMBERdeffecttheexampleshownhereisgeneratedbythe<code>linechartNUMBERddemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/linerendererNUMBERdsamplepngalt=linerendererNUMBERdsamplepng/>
thisfilewasgeneratedbythejavatmarchitectureforxmlbindingjaxbreferenceimplementationvhudson-jaxb-ri-VERSION-NUMBERsee<ahref=URL>URL</a>anymodificationstothisfilewillbelostuponrecompilationofthesourceschemageneratedonYEARNUMBERVERSIONatNUMBERNUMBERNUMBERpmwst
generatedbyjjtreedonoteditthislinejdminforminterestedhostjava
thehelperfor<tt>namevaluepair</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/namevaluepairhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
at/owlsoft/owl/corbamodel/accounting/icorbarentaljavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
gen-endinitcomponentsvariablesdeclaration-donotmodifygen-beginvariablesendofvariablesdeclarationgen-endvariables</editor-fold>
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpladdressimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/user/icorbasystemuserstatusentryoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletwikiserviceimplwikipageserviceimplandrerunservicebuildertoregeneratethisclass
_dbrelationshipadvancedpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayseptemberNUMBERYEARNUMBERNUMBERNUMBERamus/central
generatedbyjavaccdonoteditthislineexpressionparserconstantsjava
generatedautomaticallybygenerate_instructionspy
at/owlsoft/owl/communication/corba/_icorbaapifactorystubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmittwochNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
</editor-fold>gen-end|NUMBER-getter|NUMBER|
at/owlsoft/owl/corbamodel/accounting/_icorbaactivitystatusentrystubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/icorbasystemuserpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforlocaltransactionidmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdocumentlibraryserviceimpldlfileshortcutlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/icorbasystemusertransactionjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqdescriptionoftypesaccessibletotheuser
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassettaglocalserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedmethoddelphiaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
=
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsinlibrary_types
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesintestNUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplportletpreferenceslocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplmembershiprequestimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedbyjjtreedonoteditthislinejdmhostjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusergroupgrouproleserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassetentryserviceimplandrerunservicebuildertoregeneratethisclass
</editor-fold>gen-end|fields|NUMBER|
com/sun/org/omg/corba/exceptiondescriptionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
javainterfacecontactinfolistjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplpasswordpolicyrellocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletjournalmodelimpljournalarticleimageimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
com/sun/org/omg/sendingcontext/codebasehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromrtidlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
com/sun/org/omg/corba/initializerjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
at/owlsoft/owl/corbamodel/accounting/corbaactivitystatusholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
_dbdatepane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletjournalmodelimpljournaltemplateimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
fpstatusjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
standardtestmachinerysectiondonotmodifyanythinginthissection-itsastandardchunkofcodewhichhasallofthesynchronisationnecessaryforthetestharnessbykeepingitthesameinalltestsitiseasiertoreadandunderstandsomeoneelsestestaswellasinsuringthatalltestsbehavecorrectlywiththetestharnessthereisasectionfollowingthisfortest-definedclasses
at/owlsoft/owl/corbamodel/isearchfielddefinitionholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
theholderfor<tt>typecode</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>typecode</code>objectthatisusedtostoreoutandinoutparametersinidloperationsifanidloperationsignaturehasanidl<code>typecode</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>typecodeholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>mytypecodeholder</code>isaninstanceof<code>typecodeholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>mytypecodeholdervalue</code>@sincejdkVERSION
at/owlsoft/owl/corbamodel/media/_icorbamediumexemplarstatusentrystubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletexpandoserviceimplexpandorowlocalserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/corba/identifierhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
testcasefortheopenwiremarshallingforconnectioninfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplmembershiprequestserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/accounting/icorbaactivitystatusentrypoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjavaccdonoteditthislinesimplecharstreamjavaVERSIONVERSION
at/owlsoft/owl/corbamodel/accounting/_rentallisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforconnectioncontrolmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thisclassisgeneratedbyjooqcommentsontablesandviewsaccessibletotheuser
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsocialmodelimplsocialequityuserimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
com/sun/org/omg/corba/parametermodehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplresourcepermissionlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutsetlocalserviceimplandrerunservicebuildertoregeneratethisclass
testcasefortheopenwiremarshallingforremoveinfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
javainterfacetiejavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
focalmockupsoapbindingstubjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
amultiplexinguiusedtocombine<code>tooltipui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
com/sun/org/omg/sendingcontext/codebasejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromrtidlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
at/owlsoft/owl/corbamodel/accounting/_icorbafilingextensionstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdynamicdatamappingmodelimplddmcontentimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
employeeinfojavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
javainterfaceencoderjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
marshallingcodeforopenwireformatforactivemqtempqueuemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thisclassisgeneratedbyjooqconvenienceaccesstoallsequencesindba
-thefollowingcodewasgeneratedbycupVERSIONjthuoctNUMBERNUMBERNUMBERNUMBERpdtYEAR-
attachmentjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingorderserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/corba/structmemberhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
theholderfor<tt>valuebase</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>javaioserializable</code>thatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>valuebase</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>valuebaseholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>myvaluebaseholder</code>isaninstanceof<code>valuebaseholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>myvaluebaseholdervalue</code>
generatedbyjavaccdonoteditthislineelparsertokenmanagerjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsoftwarecatalogserviceimplsclicenseserviceimplandrerunservicebuildertoregeneratethisclass
thehelperfor<tt>ushortseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/ushortseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
@linklisterforprimitivetypearrays<p>bytearraylisterisusedasthemastertogeneratetherestofthelisterclassesdonotmodifythegeneratedcopies
tempout/org/omg/corba/idltypeoperationsjavageneratedbytheibmidl-to-javacompilerVERSIONVERSIONfromlib/iridlthursdayfebruaryNUMBERYEARNUMBERNUMBERNUMBERoclockpmpst
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesintest
generatedbyjavaccdonoteditthislinerccjava
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplbrowsertrackerimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/icorbasearchfieldcategorypackage/_searchfielddefinitionlistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/communication/corba/icorbareservationapioperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjjtreedonoteditthislinejdmcommunitiesjava
testcasefortheopenwiremarshallingforbasecommandnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
_databasequery_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatfridayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
at/owlsoft/owl/corbamodel/accounting/icorbareservationholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
-thefollowingcodewasgeneratedbycupVERSIONabetaYEARNUMBERthufebNUMBERNUMBERNUMBERNUMBERestYEAR-
at/owlsoft/owl/communication/corba/icorbaextendapijavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thehelperfor<tt>completionstatus</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/completionstatushelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpllayoutsetprototypeimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclasswasgeneratedbyapachecxfVERSIONthujanNUMBERNUMBERNUMBERNUMBERcetYEARgeneratedsourceVERSIONVERSION
associativeentityjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
at/owlsoft/owl/corbamodel/isearchfielddefinitionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjavaccdonoteditthislinetokenjavaVERSIONVERSION
theholderfor<tt>serviceinformation</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>serviceinformation</code>objectthatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>xxx</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>serviceinformationholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>myserviceinformationholder</code>isaninstanceof<code>serviceinformationholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>myserviceinformationholdervalue</code>
thisclassisgeneratedbyjooqechon
at/owlsoft/owl/communication/corba/icorbaapifactorypoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmittwochNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqcreateanewauthor
javainterfacetargetfinderjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
marshallingcodeforopenwireformatforactivemqstreammessagemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
$antlrVERSIONaug
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplcompanyimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
customerbasejavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
projectservicejavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
testcasefortheopenwiremarshallingforlastpartialcommandnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpllayoutimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/communication/corba/icorbaapifactoryoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmittwochNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedfrompropertymirah
_dbmodelwizard_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
</editor-fold>gen-endinitcomponentsvariablesdeclaration-donotmodifygen-beginvariablesendofvariablesdeclarationgen-endvariables
marshallingcodeforopenwireformatforactivemqmessagemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
checktextresponsejavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
amultiplexinguiusedtocombine<code>comboboxui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
at/owlsoft/owl/corbamodel/isearchfielddefinitionjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletbookmarksmodelimplbookmarksfolderimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpluserserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/corba/attributedescriptionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplimageimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
$antlrVERSIONnov
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplquartzlocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsinlukas
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplpermissionserviceimplandrerunservicebuildertoregeneratethisclass
coordinateaxisdefinedbyalook-uptableasgeneratedbygregsmithscode@authorjonblower$revisionNUMBER$$dateYEAR-NUMBER-NUMBERNUMBERNUMBERNUMBER+NUMBERmiNUMBERjulYEAR$$log$
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplservicecomponentimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
com/sun/org/omg/corba/attrdescriptionseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
<editor-folddefaultstate=collapseddesc=generatedgetterisweb>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
generatedbyjavaccdonoteditthislinetokenmgrerrorjavaVERSIONVERSION
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarstatusentryjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjjtreedonoteditthislinejdmtrapnumjava
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarpackage/_metadatakeysholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/repositoryidhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletannouncementsmodelimplannouncementsentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
standardtestmachinerysectiondonotmodifyanythinginthissection-itsastandardchunkofcodewhichhasallofthesynchronisationnecessaryforthetestharnessbykeepingitthesameinalltestsitiseasiertoreadandunderstandsomeoneelsestestaswellasinsuringthatalltestsbehavecorrectlywiththetestharnessthereisasectionfollowingthisfortest-classes
testcasefortheopenwiremarshallingforshutdowninfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletbookmarksmodelimplbookmarksentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsintest
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplgroupimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedgettermatlab>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/isearchfielddefinitionoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletexpandoserviceimplexpandocolumnserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedmethodisbrowseraction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
thisclassisgeneratedbyjooqdescriptionofnamedcollectiontypesaccessibletotheuser
testcasefortheopenwiremarshallingforconsumeridnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedgetterisbrowser>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
marshallingcodeforopenwireformatfordataresponsemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
testcasefortheopenwiremarshallingforconnectionidnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/media/tagtypeholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplwebdavpropslocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplvirtualhostlocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesinpg_catalog
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdynamicdatamappingserviceimplddmstructurelinkserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/icorbasystemuserstatusentryholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletshoppingmodelimplshoppingitempriceimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/accounting/_filingextensionlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
amultiplexinguiusedtocombine<code>desktoppaneui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdocumentlibrarymodelimpldlfilerankimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsoftwarecatalogserviceimplscproductversionlocalserviceimplandrerunservicebuildertoregeneratethisclass
_dbstringpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayseptemberNUMBERYEARNUMBERNUMBERNUMBERamus/central
marshallingcodeforopenwireformatforjournaltransactionmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedmethodswitchdisplayable>gen-begin|NUMBER-switchdisplayable|NUMBER|NUMBER-preswitch
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsoftwarecatalogmodelimplscframeworkversionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusergrouplocalserviceimplandrerunservicebuildertoregeneratethisclass
notesprojectarrayjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplaccountlocalserviceimplandrerunservicebuildertoregeneratethisclass
testcasefortheopenwiremarshallingforxatransactionidnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesininformation_schema
generatedbyjavaccdonoteditthislinejsonparserconstantsjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplpermissionlocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesin
testcasefortheopenwiremarshallingforsessioninfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
theholderfor<tt>longlongseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/longlongseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesinpublic
generatedbyjavaccdonoteditthislineparseexceptionjavaVERSIONVERSIONpreNUMBER
theholderfor<tt>ulongseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/ulongseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplportletpreferencesserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/media/itagpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsocialmodelimplsocialactivityimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletratingsmodelimplratingsentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsoftwarecatalogmodelimplscproductentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/communication/corba/icorbaapifactoryhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmittwochNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
<editor-folddefaultstate=collapseddesc=generatedgetterisvm>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
marshallingcodeforopenwireformatfordataarrayresponsemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
amultiplexinguiusedtocombine<code>popupmenuui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletshoppingmodelimplshoppingcategoryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
_game_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatsaturdayfebruaryNUMBERYEARNUMBERNUMBERNUMBERpmus/pacific
at/owlsoft/owl/corbamodel/media/_mediumexemplarlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
javainterfacecontactinfolistiteratorjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
<editor-folddefaultstate=collapseddesc=generatedmethodiswebaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
generatedbyjjtreedonoteditthislinejdmtrapblockjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplcmisrepositorylocalserviceimplandrerunservicebuildertoregeneratethisclass
thehelperfor<tt>setoverridetype</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/setoverridetypehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
asteprenderersimilarto@linkxysteprendererbutthatcanbeusedwiththe@linkcategoryplotclasstheexampleshownhereisgeneratedbythe<code>categorystepchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/categorysteprenderersamplepngalt=categorysteprenderersamplepng/>
marshallingcodeforopenwireformatformessageidmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferaycounterserviceimplcounterlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/_icorbasystemuserstatusentrystubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
astackedbarrendererforusewiththe@linkcategoryplotclasstheexampleshownhereisgeneratedbythe<code>stackedbarchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/stackedbarrenderersamplepngalt=stackedbarrenderersamplepng/>
<editor-folddefaultstate=collapseddesc=generatedgettertickerNUMBER>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplclassnamelocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplresourcepermissionserviceimplandrerunservicebuildertoregeneratethisclass
theholderfor<tt>policy</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/policyholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/org/omg/portableserver/corbaidlsaturdayjulyNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletjournalserviceimpljournalfeedlocalserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/sendingcontext/_codebasestubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromrtidlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
<editor-folddefaultstate=collapseddesc=generatedgetterticker>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplportletitemlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletjournalmodelimpljournalcontentsearchimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplcontactserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/media/icorbamediumhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/accounting/icorbaactivitypoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/_icorbarolestubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/sendingcontext/codebasepackage/urlseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromrtidlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
generatedbyjjtreedonoteditthislinejdmipvNUMBERaddressjava
at/owlsoft/owl/corbamodel/accounting/_rentallistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
<editor-folddefaultstate=collapseddesc=generatedmethodresumemidlet>gen-begin|NUMBER-resumemidlet|NUMBER|NUMBER-preaction
<editor-folddefaultstate=collapseddesc=generatedgettercsharp>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
checktextrequestjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
line/stepitemrendererforan@linkxyplotthisclassdrawslinesbetweendatapointsonlyallowinghorizontalorverticallinesstepstheexampleshownhereisgeneratedbythe<code>xysteprendererdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xysteprenderersamplepngalt=xysteprenderersamplepng/>
marshallingcodeforopenwireformatforjournalqueueackmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/invalidoperationexceptionholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/accounting/_filingextensionlistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdocumentlibraryserviceimpldlrepositoryserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplsubscriptionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/communication/corba/icorbasearchapihelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
casedatajavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarstatusentryholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedfromconfigurationmirah
generatedbyjjtreedonoteditthislinejdmipaddressjava
javainterfaceacceptorjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
gen-lastevent_modifysensortextfieldkeyreleased
generatedbymibgenVERSIONVERSIONNUMBER/NUMBER/NUMBERwhencompilingjvm-management-mib
salesorderstatushistoryentityjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
tempout/org/omg/corba/idltypejavageneratedbytheibmidl-to-javacompilerVERSIONVERSIONfromlib/iridlthursdayfebruaryNUMBERYEARNUMBERNUMBERNUMBERoclockpmpst
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdynamicdatamappingmodelimplddmstructureimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
com/sun/corba/se/impl/protocol/giopmsgheaders/referenceaddrjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/com/sun/corba/se/giopidl/gidlsundayjuneNUMBERYEARNUMBERNUMBERNUMBERpmpdt
generatedbyjjtreedonoteditthislinejdmhosttrapjava
at/owlsoft/owl/corbamodel/media/icorbamediumoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjjtreedonoteditthislinesimplenodejava
thisclasswasgeneratedbyoraclejpub@seeoraclesdogeometrydatatype@authorEMAIL@authorlastchangedby$authorveihelmann$@version$revisionNUMBER$$dateYEAR-NUMBER-NUMBERNUMBERNUMBERNUMBER+NUMBERmiNUMBERjulYEAR$@since
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplresourcecodelocalserviceimplandrerunservicebuildertoregeneratethisclass
theholderfor<tt>double</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>double</code>thatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>double</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>doubleholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>mydoubleholder</code>isaninstanceof<code>doubleholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>mydoubleholdervalue</code>@sincejdkVERSION
at/owlsoft/owl/corbamodel/media/itagjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplusernotificationeventimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletjournalmodelimpljournalarticleresourceimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/corbasearchfieldtypehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletmessageboardsmodelimplmbthreadimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletpollsmodelimplpollsquestionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedbyjavaccdonoteditthislinecompactsyntaxconstantsjava
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletassetmodelimplassetvocabularyimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedbyjavaccdonoteditthislinetokenjavaVERSIONVERSIONpreNUMBER
notefordevelopersnevermodifythisclassdirectlymodify<code>servicexml</code>andrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/accounting/_activitystatusentrylisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplworkflowinstancelinklocalserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedmethodisbeginaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
thisclasswasgeneratedbythejax-wsrijax-wsriVERSION-hudson-NUMBER-generatedsourceVERSIONVERSION
_dbmodelconnectionpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsocialmodelimplsocialequitygroupsettingimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/communication/corba/icorbareturnapipoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjavaccdonoteditthislinerccconstantsjava
thisclassisgeneratedbyjooqintegrationtestfor#NUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletcalendarserviceimplcaleventlocalserviceimplandrerunservicebuildertoregeneratethisclass
gen-begin|NUMBER-startmidlet|NUMBER|</editor-fold>gen-end|NUMBER-startmidlet|NUMBER|
generatedbyjjtreedonoteditthislinejdminformitemjava
at/owlsoft/owl/communication/corba/icorbaauthenticationapijavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
theholderfor<tt>any</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfor<code>any</code>objectsthatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>any</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>anyholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>myanyholder</code>isaninstanceof<code>anyholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>myanyholdervalue</code>@sincejdkVERSION
at/owlsoft/owl/corbamodel/icorbasearchfieldcategorypackage/_searchfielddefinitionlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/corbasystemuserstatusjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
testcasefortheopenwiremarshallingformessageacknotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletratingsserviceimplratingsstatslocalserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/corba/se/impl/protocol/giopmsgheaders/targetaddresshelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/com/sun/corba/se/giopidl/gidlsundayjuneNUMBERYEARNUMBERNUMBERNUMBERpmpdt
thehelperfor<tt>valuemember</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/valuememberhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplusergroupgrouproleimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsocialserviceimplsocialrequestinterpreterlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/icorbaroleholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/operationdescriptionjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
testcasefortheopenwiremarshallingfordiscoveryeventnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
com/sun/org/omg/corba/valuememberhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplrolelocalserviceimplandrerunservicebuildertoregeneratethisclass
amultiplexinguiusedtocombine<code>textui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
at/owlsoft/owl/communication/corba/icorbarentalapipoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/nopermissionexceptionjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassetcategorylocalserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatforsessionidmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/icorbasearchfieldcategorypoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/parameterdescriptionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
stubclassgeneratedbyrmicdonoteditcontentssubjecttochangewithoutnotice
at/owlsoft/owl/communication/corba/icorbareturnapioperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsoftwarecatalogserviceimplscproductentrylocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqaclassmodellingforeignkeyrelationshipsbetweentablesofthedbaschema
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdocumentlibraryserviceimpldlfileentryserviceimplandrerunservicebuildertoregeneratethisclass
amultiplexinguiusedtocombine<code>separatorui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplpasswordtrackerimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
testcasefortheopenwiremarshallingforsessionidnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpluserlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/accounting/icorbaactivityoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbmessageserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/corba/structmemberseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplresourceactionlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/_authenticationapilistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutrevisionserviceimplandrerunservicebuildertoregeneratethisclass
theholderfor<tt>short</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><paholderclassfora<code>short</code>thatisusedtostoreoutandinoutparametersinidloperationsifanidloperationsignaturehasanidl<code>short</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>shortholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>myshortholder</code>isaninstanceof<code>shortholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>myshortholdervalue</code>@sincejdkVERSION
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletflagsserviceimplflagsentryserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpllisttypeimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletpollsmodelimplpollsvoteimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletmessageboardsmodelimplmbmessageflagimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingcouponlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplimageserviceimplandrerunservicebuildertoregeneratethisclass
aspecialisedrendererfordisplayingwindintensity/directiondatatheexampleshownhereisgeneratedbythe<code>windchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/winditemrenderersamplepngalt=winditemrenderersamplepng/>
at/owlsoft/owl/corbamodel/accounting/icorbareservationjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/icorbasystemusertransactionholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsocialmodelimplsocialequityassetentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqargumentsinobjectaccessibletotheuser
amultiplexinguiusedtocombine<code>rootpaneui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey@sinceVERSION
dominosoapbindingstubjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
marshallingcodeforopenwireformatforconsumerinfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplgrouplocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletmessageboardsmodelimplmbcategoryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/user/icorbarolepoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
theholderfor<tt>string</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>string</code>thatisusedtostoreoutandinoutparametersinidloperationsifanidloperationsignaturehasanidl<code>string</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>stringholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>mystringholder</code>isaninstanceof<code>stringholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>mystringholdervalue</code>@sincejdkVERSION
at/owlsoft/owl/communication/corba/icorbasystemuserapihelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesinlukas
thisclassisgeneratedbyjooqconstraintdefinitionsonaccessibletables
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassetvocabularyserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedmethodphpaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
testcasefortheopenwiremarshallingforactivemqtopicnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpluseridmapperlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/accounting/_activitystatusentrylistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplaccountserviceimplandrerunservicebuildertoregeneratethisclass
projectreturnstatusjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
com/sun/org/omg/corba/excdescriptionseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplpluginsettingserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplemailaddressserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/validation/icorbavalidationmessagejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/communication/corba/icorbaapiservicehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplclassnameserviceimplandrerunservicebuildertoregeneratethisclass
arendererthathandlesthemultiplevaluesfroma@linkmultivaluecategorydatasetbyplottingashapeforeachvalueforeachgiveniteminthedatasettheexampleshownhereisgeneratedbythe<code>scatterrendererdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/scatterrenderersamplepngalt=scatterrenderersamplepng/>@sinceVERSION
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletannouncementsserviceimplannouncementsentryserviceimplandrerunservicebuildertoregeneratethisclass
astackedarearendererforthe@linkxyplotclasstheexampleshownhereisgeneratedbythe<code>stackedxyareachartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/stackedxyarearendererNUMBERsamplepngalt=stackedxyarearendererNUMBERsamplepng/>
amultiplexinguiusedtocombine<code>menubarui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
<editor-folddefaultstate=collapseddesc=generatedmethodisindentaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
arendererthatdrawsshapesforeachdataitemandlinesbetweendataitemsforusewiththe@linkcategoryplotclasstheexampleshownhereisgeneratedbythe<code>linechartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/lineandshaperenderersamplepngalt=lineandshaperenderersamplepng/>
@generated
at/owlsoft/owl/corbamodel/user/corbasystemuserstatushelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/initializerhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
marshallingcodeforopenwireformatformessagepullmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thehelperfor<tt>wcharseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/wcharseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
at/owlsoft/owl/corbamodel/media/tagtypejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
_dbdatapane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayseptemberNUMBERYEARNUMBERNUMBERNUMBERamus/central
thehelperfor<tt>repositoryid</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/repositoryidhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
thisclassisgeneratedbyjooqanentityholdingauthorsofbooks
testcasefortheopenwiremarshallingformessagepullnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
generatedbyjavaccdonoteditthislinecompactsyntaxtokenmanagerjava
com/sun/org/omg/corba/initializerseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
contributedbyorgeclipsextextgeneratorparserantlrexrtantlrgeneratorfragment
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplteamlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletshoppingmodelimplshoppingorderitemimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
theholderfor<tt>byte</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>byte</code>thatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>octet</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>byteholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>mybyteholder</code>isaninstanceof<code>byteholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>mybyteholdervalue</code>@sincejdkVERSION
thehelperfor<tt>visibility</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/visibilityhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsindbms_xplan
amultiplexinguiusedtocombine<code>menuitemui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
com/sun/org/omg/corba/pardescriptionseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdynamicdatamappingserviceimplddmcontentlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/icorbaapifactoryjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmittwochNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdynamicdatamappingserviceimplddmlistlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletassetmodelimplassettagstatsimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedgetterimageitem>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
theholderfor<tt>doubleseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/doubleseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
at/owlsoft/owl/corbamodel/media/icorbamediumholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletjournalserviceimpljournalarticleimagelocalserviceimplandrerunservicebuildertoregeneratethisclass
arendererforan@linkxyplotthathighlightsthedifferencesbetweentwoseriestheexampleshownhereisgeneratedbythe<code>differencechartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xydifferencerenderersamplepngalt=xydifferencerenderersamplepng/>
theinterfacefor<tt>policy</tt>formoreinformationonoperationsinterfacessee<ahref=doc-files/generatedfileshtml#operations>generatedfilesoperationsfiles</a><p>org/omg/corba/policyoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/org/omg/portableserver/corbaidlsaturdayjulyNUMBERYEARNUMBERNUMBERNUMBERampdt
arendererthatdrawsstackedbarswithingroupsthiswillprobablybemergedwiththe@linkstackedbarrendererclassatsomepointtheexampleshownhereisgeneratedbythe<code>stackedbarchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/groupedstackedbarrenderersamplepngalt=groupedstackedbarrenderersamplepng/>
at/owlsoft/owl/communication/corba/_icorbareturnapistubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatfordatastructuresupportmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletjournalmodelimpljournalstructureimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/accounting/_activitylistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
testcasefortheopenwiremarshallingfortransactionidnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
_editorentities_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
=thisfilehasbeengeneratedbyratsparsergeneratorVERSIONVERSIONVERSIONYEARrobertgrimmonthursdaynovemberNUMBERYEARatNUMBERNUMBERNUMBERpmeditatyourownrisk=
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarstatusentrypoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
javainterfacemessagestructjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
testcasefortheopenwiremarshallingfordataarrayresponsenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/communication/corba/icorbareturnapihelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedfromshortcut_keymirah
<editor-folddefaultstate=collapseddesc=generatedmethodismsaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
<editor-folddefaultstate=collapseddesc=generatedgetterplsql>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplpasswordpolicyrelimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsoftwarecatalogmodelimplscproductscreenshotimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedmethodcplusplusaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
gen-lastevent_modifypresettextfieldkeyreleased
arendererthatdrawsbarsonan@linkxyplotrequiresan@linkintervalxydatasettheexampleshownhereisgeneratedbythe<code>xybarchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xybarrenderersamplepngalt=xybarrenderersamplepng/>
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletshoppingmodelimplshoppingitemfieldimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletjournalserviceimpljournalfeedserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplsubscriptionlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsoftwarecatalogserviceimplsclicenselocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletratingsserviceimplratingsentrylocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplclassnameimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsindba
at/owlsoft/owl/corbamodel/accounting/_reservationlistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
<editor-folddefaultstate=collapseddesc=generatedgettercplusplus>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/media/_icorbamediumstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/_icorbasearchfieldstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatformessageackmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedgetterstringitemNUMBER>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/communication/corba/icorbareservationapihelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqanentityholdinglanguagemasterdata
<editor-folddefaultstate=collapseddesc=generatedmethodisoopNUMBERaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsindbo
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdocumentlibraryserviceimpldlapphelperlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/_icorbasearchapistubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/accounting/_icorbareservationstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplpluginsettinglocalserviceimplandrerunservicebuildertoregeneratethisclass
generatedautomaticallybygenerate_instructionspymodifiedbynat
generatedbymibgenVERSIONVERSIONNUMBER/NUMBER/NUMBERwhencompilingjvm-management-mibinstandardmetadatamode
a@linkcategoryitemrendererthatdrawsindividualdataitemsashorizontallinesspacedinthesamewayasbarsinabarcharttheexampleshownhereisgeneratedbythe<code>overlaidbarchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/levelrenderersamplepngalt=levelrenderersamplepng/>
astepchartrendererthatfillstheareabetweenthestepandthex-axistheexampleshownhereisgeneratedbythe<code>xysteparearendererdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xysteparearenderersamplepngalt=xysteparearenderersamplepng/>
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletannouncementsserviceimplannouncementsdeliverylocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpluseridmapperimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/media/_mediumlistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
checktextsresponsejavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpluserimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusergrouproleserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatforconnectionidmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplusertrackerimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/accounting/icorbarentaloperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/icorbasearchfieldpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/icorbasystemuseroperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/valuedefpackage/fullvaluedescriptionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
<editor-folddefaultstate=collapseddesc=generatedgetterimageNUMBER>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
<editor-folddefaultstate=collapseddesc=generatedgetterperl>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/communication/corba/_searchapilisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thehelperfor<tt>shortseqhelper</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/shortseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
at/owlsoft/owl/communication/corba/icorbarentalapihelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
theholderfor<tt>anyseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/anyseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
generatedbythejax-wsri
at/owlsoft/owl/corbamodel/user/icorbasystemuserhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/communication/corba/_icorbarentalapistubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thehelperfor<tt>servicedetail</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbcategorylocalserviceimplandrerunservicebuildertoregeneratethisclass
_dbinspectorpanel_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
thehelperfor<tt>policylist</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/policylisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/org/omg/portableserver/corbaidlsaturdayjulyNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletjournalserviceimpljournalstructurelocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/icorbasystemuserapijavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/operationdescriptionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
testcasefortheopenwiremarshallingforreplaycommandnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
dominosoapbindingimpljavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletimagegalleryserviceimpligimagelocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletblogsserviceimplblogsentrylocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplpasswordtrackerlocalserviceimplandrerunservicebuildertoregeneratethisclass
a@linkcategoryitemrendererthatrepresentsdatausingbarswhicharesuperimposedtheexampleshownhereisgeneratedbythe<code>layeredbarchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/layeredbarrenderersamplepngalt=layeredbarrenderersamplepng/>
at/owlsoft/owl/communication/corba/_authenticationapilisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesindbo
at/owlsoft/owl/corbamodel/validation/validationmodeholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclasswasgeneratedusinggeneratephpagainstanxmlschemaprovidedbykaltura@datesunNUMBERjunNUMBERNUMBERNUMBERNUMBER-NUMBERmanualchangestothisclasswillbeoverwritten
focalmockupserviceservicelocatorjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
marshallingcodeforopenwireformatforwireformatinfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
com/sun/org/omg/corba/idltypeoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
at/owlsoft/owl/corbamodel/user/_systemusertransactionlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesindba
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusernotificationeventlocalserviceimplandrerunservicebuildertoregeneratethisclass
amultiplexinguiusedtocombine<code>labelui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsocialserviceimplsocialrelationlocalserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatforconsumeridmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletexpandoserviceimplexpandovalueserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferaycountermodelimplcounterimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletannouncementsserviceimplannouncementsdeliveryserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatforbasecommandmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdocumentlibrarymodelimpldlfileversionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/accounting/icorbarentalpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallerfactoryforopenwireformatnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
generatedbyjjtreedonoteditthislinejdmtrapinterestedhostjava
areaitemrendererforan@linkxyplottheexampleshownhereisgeneratedbythe<code>xyarearendererNUMBERdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xyarearendererNUMBERsamplepngalt=xyarearendererNUMBERsamplepng/>
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletwikiserviceimplwikipagelocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsinpublic
thehelperfor<tt>definitionkind</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/definitionkindhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesinmysql
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdynamicdatamappingmodelimplddmstructurelinkimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thestubfor<tt>idltype</tt>formoreinformationonstubfilessee<ahref=doc-files/generatedfileshtml#stub>generatedfilesstubs</a><p>org/omg/corba/_idltypestubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
_dbentitypane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
thehelperfor<tt>unionmember</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/unionmemberhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
com/sun/org/omg/sendingcontext/codebasepackage/urlhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromrtidlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletimagegalleryserviceimpligfolderserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatforresponsemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedmethodjavascriptaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
testcasefortheopenwiremarshallingforactivemqbytesmessagenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
amultiplexinguiusedtocombine<code>tabbedpaneui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
generatedbyjjtree&javaccdonoteditthislineparsertokenmanagerjava
at/owlsoft/owl/corbamodel/accounting/icorbafilingextensionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
theholderfor<tt>boolean</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>boolean</code>thatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>boolean</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>booleanholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>mybooleanholder</code>isaninstanceof<code>booleanholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>mybooleanholdervalue</code>@sincejdkVERSION
testcasefortheopenwiremarshallingforintegerresponsenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
javainterfacedecoderjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
testcasefortheopenwiremarshallingforconsumerinfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
packratparserforgrammar<code>xtctypicaltypical</code><p/>thisclasshasbeengeneratedbythe<i>rats</i>parsergeneratorVERSIONVERSIONVERSIONYEARrobertgrimm
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutrevisionlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsocialmodelimplsocialequityhistoryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
automaticallygeneratedbyfreehepjavagraphicsNUMBERd
gen-begin|NUMBER-initialize|NUMBER|</editor-fold>gen-end|NUMBER-initialize|NUMBER|
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusergroupgrouprolelocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/accounting/corbaactivitystatushelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplgroupserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedgetterisdb>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
theholderfor<tt>unknownuserexception</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/unknownuserexceptionholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbaidlthursdayaugustNUMBERYEARNUMBERNUMBERNUMBERpmpdt
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletshoppingmodelimplshoppingcartimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassetcategoryserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsocialserviceimplsocialequityuserlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/validation/icorbavalidationmessagepoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/validation/_validationmessagelisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplteamimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/accounting/icorbaactivitystatusentryoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/sendingcontext/_codebaseimplbasejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromrtidlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
at/owlsoft/owl/communication/corba/icorbaauthenticationapipoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplimagelocalserviceimplandrerunservicebuildertoregeneratethisclass
thehelperfor<tt>charseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/charseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
at/owlsoft/owl/corbamodel/user/transactiontypeholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingitemlocalserviceimplandrerunservicebuildertoregeneratethisclass
-thisfilewasautomaticallygenerated-handalterationsmaybelost-
auto-generatedfiledonotmodifythisclasswasautomaticallygeneratedbytheaapttoolfromtheresourcedataitfounditshouldnotbemodifiedbyhand
thisclassisgeneratedbyjooqview
testcasefortheopenwiremarshallingforactivemqtempqueuenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsinlibrary_NUMBER_package_test
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutsetprototypelocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletannouncementsserviceimplannouncementsflagserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbbanserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedgetterisoop>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
marshallingcodeforopenwireformatforactivemqdestinationmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplportalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/_searchfieldcategorylisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjjtree&javaccdonoteditthislineparserconstantsjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplportallocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/icorbasearchapiholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/communication/corba/_apiservicelistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforactivemqtextmessagemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
generatedbyjavaccdonoteditthislinescdparserjava
projectservicelocatorjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
at/owlsoft/owl/corbamodel/icorbasearchfieldcategoryoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutprototypeserviceimplandrerunservicebuildertoregeneratethisclass
dominosoapbindingskeletonjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletpollsserviceimplpollsvoteserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingcartlocalserviceimplandrerunservicebuildertoregeneratethisclass
javainterfaceinterceptorsjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
at/owlsoft/owl/corbamodel/icorbasearchfieldcategoryhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
todoconsiderthisautogeneratedcode
<editor-folddefaultstate=collapseddesc=generatedmethodstartmidlet>gen-begin|NUMBER-startmidlet|NUMBER|NUMBER-preaction
methodgeneratedbyintellijideaguidesigner>>>important<<<donoteditthismethodorcallitinyourcode@noinspectionall
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletassetmodelimplassettagpropertyimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
-thisfilewasautomaticallygeneratedbyswigURLVERSIONVERSIONdonotmakechangestothisfileunlessyouknowwhatyouaredoing-modifytheswiginterfacefileinstead-
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbmailinglistlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/accounting/icorbaactivitystatusentryholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatfortransactionidmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/user/icorbarolejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjavaccdonoteditthislineparseexceptionjavaVERSIONVERSION
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsoftwarecatalogserviceimplscframeworkversionserviceimplandrerunservicebuildertoregeneratethisclass
autogeneratedbythriftcompilerVERSIONdonoteditunlessyouaresurethatyouknowwhatyouaredoing
thisclassisgeneratedbyjooqaclassmodellingforeignkeyrelationshipsbetweentablesofthedboschema
at/owlsoft/owl/communication/corba/icorbaextendapioperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplreleaselocalserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/corba/opdescriptionseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
focalmockupserviceservicejavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplorggrouproleimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/media/itagoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletblogsmodelimplblogsstatsuserimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
testcasefortheopenwiremarshallingforwireformatinfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletmessageboardsmodelimplmbstatsuserimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/media/_itagstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
returnstatusjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
at/owlsoft/owl/corbamodel/validation/corbavalidationmessagestatusholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/accounting/_icorbaactivitystubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
<editor-folddefaultstate=collapseddesc=generatedgetterimageitemNUMBER>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/communication/corba/icorbaapifactoryholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmittwochNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
<editor-folddefaultstate=collapseddesc=generatedgetterbackcommandNUMBER>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplbrowsertrackerlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/media/corbamediumexemplarstatusholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplcountryserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/_icorbasystemusertransactionstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpladdressserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletratingsserviceimplratingsentryserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/corba/parameterdescriptionjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
testcasefortheopenwiremarshallingforflushcommandnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedgetterisms>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/media/itaghelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletwikiserviceimplwikipageresourcelocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/icorbasearchfieldholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisfilewasgeneratedbythejavatmarchitectureforxmlbindingjaxbreferenceimplementationVERSION-hudson-jaxb-ri-VERSION-NUMBER-see<ahref=URL>URL</a>anymodificationstothisfilewillbelostuponrecompilationofthesourceschemageneratedonYEARNUMBERVERSIONatNUMBERNUMBERNUMBERodpcet
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisfilewasgeneratedbythejavatmarchitectureforxmlbindingjaxbreferenceimplementationvjaxbVERSIONinjdkVERSIONsee<ahref=URL>URL</a>anymodificationstothisfilewillbelostuponrecompilationofthesourceschemageneratedonYEARNUMBERVERSIONatNUMBERNUMBERNUMBERpmcet
at/owlsoft/owl/corbamodel/media/_mediumexemplarlistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/icorbasearchfieldcategoryjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/operationmodejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
thisclassisgeneratedbyjooqdescriptionofallproceduresavailabletotheuser
thisclassisgeneratedbyjooqdescriptionofsequencesaccessibletotheuser
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingitempricelocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/accounting/icorbaactivityhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusergrouprolelocalserviceimplandrerunservicebuildertoregeneratethisclass
thehelperfor<tt>wstringvalue</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>
at/owlsoft/owl/corbamodel/accounting/_icorbarentalstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
arendererthathandlesthedrawingofbarsforabarplotwhereeachbarhasahighandlowvaluethisrendererisforusewiththe@linkcategoryplotclasstheexampleshownhereisgeneratedbythe<code>intervalbarchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/intervalbarrenderersamplepngalt=intervalbarrenderersamplepng/>
acategoryitemrendererthatdrawsareachartsyoucanusethisrendererwiththe@linkcategoryplotclasstheexampleshownhereisgeneratedbythe<code>areachartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/arearenderersamplepngalt=arearenderersamplepng/>
at/owlsoft/owl/corbamodel/icorbasearchfieldjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
arendererthatconnectsdatapointswithlinesand/ordrawsshapesateachdatapointthisrendererisdesignedforusewiththe@linkxyplotclasstheexampleshownhereisgeneratedbythe<code>xylineandshaperendererdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xylineandshaperenderersamplepngalt=xylineandshaperenderersamplepng/>
generatedbyjavaccdonoteditthislineexpressionparsertokenmanagerjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletpollsserviceimplpollschoicelocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingitemserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletcalendarserviceimplcaleventserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatformessagedispatchnotificationmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
theholderfor<tt>shortseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/shortseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
marshallingcodeforopenwireformatforshutdowninfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/media/tagtypehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplmembershiprequestlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusertrackerpathlocalserviceimplandrerunservicebuildertoregeneratethisclass
spellservicejavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletshoppingmodelimplshoppingorderimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedcode>gen-begininitcomponents
at/owlsoft/owl/corbamodel/media/icorbamediumexemplarpackage/_metadatakeyshelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
<editor-folddefaultstate=collapseddesc=generatedgetteriscompilable>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/media/corbamediumexemplarstatusjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdocumentlibrarymodelimpldlfileshortcutimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
returnedprojectsjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
thehelperfor<tt>serviceinformation</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayouttemplatelocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletexpandomodelimplexpandotableimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclasswasgeneratedcustomizationsshouldonlyhappeninanewlyintroducedsubclass
testcasefortheopenwiremarshallingforactivemqdestinationnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
tempout/org/omg/corba/irobjectoperationsjavageneratedbytheibmidl-to-javacompilerVERSIONVERSIONfromlib/iridlthursdayfebruaryNUMBERYEARNUMBERNUMBERNUMBERoclockpmpst
_editorstoredprocedure_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
template@linktransducedaccessorforadoublefield<p>allthetransducedaccessor_fieldaregeneratedfrom<code>transducedaccessor_field_byte</code>@authorkohsukekawaguchi@seetransducedaccessor#get
at/owlsoft/owl/corbamodel/nopermissionexceptionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforproducerinfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
marshallingcodeforopenwireformatforjournaltopicackmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thisfileisgeneratedbyrelaxngcc
marshallingcodeforopenwireformatforactivemqblobmessagemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
marshallingcodeforopenwireformatforexceptionresponsemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdocumentlibraryserviceimpldlfolderlocalserviceimplandrerunservicebuildertoregeneratethisclass
contributedbyorgeclipsextextuigeneratorrefactoringrefactorelementnamefragment
template@linktransducedaccessorforalongfield<p>allthetransducedaccessor_fieldaregeneratedfrom<code>transducedaccessor_field_byte</code>@authorkohsukekawaguchi@seetransducedaccessor#get
thehelperfor<tt>ulongseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/ulongseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpllayoutsetbranchimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedbyjavaccdonoteditthislinejavacharstreamjavaVERSIONVERSION
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbmessageflagserviceimplandrerunservicebuildertoregeneratethisclass
amultiplexinguiusedtocombine<code>scrollbarui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
_dbentityadvancedpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteattuesdayseptemberNUMBERYEARNUMBERNUMBERNUMBERamus/central
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplworkflowdefinitionlinkimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
javainterfaceeptfactoryjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletpollsserviceimplpollsquestionlocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqconvenienceaccesstoalludtsinpublic
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletexpandoserviceimplexpandocolumnlocalserviceimplandrerunservicebuildertoregeneratethisclass
thehelperfor<tt>versionspec</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/versionspechelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
thehelperfor<tt>ulonglongseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/ulonglongseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
marshallingcodeforopenwireformatforkeepaliveinfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdocumentlibraryserviceimpldlfolderserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpladdresslocalserviceimplandrerunservicebuildertoregeneratethisclass
theholderfor<tt>wrongtransaction</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/wrongtransactionholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbaidlthursdayaugustNUMBERYEARNUMBERNUMBERNUMBERpmpdt
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplshardimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletannouncementsserviceimplannouncementsflaglocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/_apifactorylistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
amultiplexinguiusedtocombine<code>splitpaneui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
com/sun/org/omg/corba/attributemodejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
<editor-folddefaultstate=collapseddesc=generatedgetterphp>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/icorbasearchfieldoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatfortransactioninfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletbookmarksserviceimplbookmarksentrylocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsoftwarecatalogserviceimplscframeworkversionlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplpluginsettingimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/accounting/icorbafilingextensionpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
arendererthatconnectsdatapointswithnaturalcubicsplinesand/ordrawsshapesateachdatapointthisrendererisdesignedforusewiththe@linkxyplotclasstheexampleshownhereisgeneratedbythe<code>xysplinerendererdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xysplinerenderersamplepngalt=xysplinerenderersamplepng/>@sinceVERSION
personinfojavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpllayoutsetimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletjournalmodelimpljournalarticleimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletjournalserviceimpljournaltemplateserviceimplandrerunservicebuildertoregeneratethisclass
testcasefortheopenwiremarshallingforjournaltopicacknotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/communication/corba/icorbaextendapihelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
_document_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatfridayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
autogeneratedbythriftdonoteditunlessyouaresurethatyouknowwhatyouaredoing
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllocklocalserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatfordiscoveryeventmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedgetterfont>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/_searchfieldlistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplwebsiteserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdocumentlibrarymodelimpldlfolderimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsoftwarecatalogmodelimplscproductversionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
theinterfacefor<tt>idltype</tt>formoreinformationonoperationsinterfacessee<ahref=doc-files/generatedfileshtml#operations>generatedfilesoperationsfiles</a>
testcasefortheopenwiremarshallingforproduceridnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
marshallingcodeforopenwireformatforproducerackmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedgetteristemplate>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
com/sun/org/omg/corba/definitionkindhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
at/owlsoft/owl/corbamodel/validation/_validationmessagelistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplresourcepermissionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusertrackerlocalserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedgettermenu>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
arendererthatdrawsasmalldotateachdatapointforan@linkxyplottheexampleshownhereisgeneratedbythe<code>scatterplotdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xydotrenderersamplepngalt=xydotrenderersamplepng/>
arendererforbarswithaNUMBERdeffectforusewiththe@linkcategoryplotclasstheexampleshownhereisgeneratedbythe<code>barchartNUMBERddemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/barrendererNUMBERdsamplepngalt=barrendererNUMBERdsamplepng/>
arendererforsimpleganttchartstheexampleshownhereisgeneratedbythe<code>ganttdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/ganttrenderersamplepngalt=ganttrenderersamplepng/>
generatedfrommodifier_keymirah
at/owlsoft/owl/corbamodel/media/_taglistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/validation/icorbavalidationmessagehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletcalendarmodelimplcaleventimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
amultiplexinguiusedtocombine<code>tableui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
at/owlsoft/owl/corbamodel/accounting/corbaactivitystatusjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/corba/se/impl/protocol/giopmsgheaders/ioraddressinginfojavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/com/sun/corba/se/giopidl/gidlsundayjuneNUMBERYEARNUMBERNUMBERNUMBERpmpdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplteamserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/nopermissionexceptionholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
a@linkcategoryitemrendererthatdrawsindividualdataitemsasbarstheexampleshownhereisgeneratedbythe<code>barchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/barrenderersamplepngalt=barrenderersamplepng/>
generatedbyjjtree&javaccdonoteditthislineparserjava
com/sun/corba/se/impl/protocol/giopmsgheaders/keyaddrjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/com/sun/corba/se/giopidl/gidlsundayjuneNUMBERYEARNUMBERNUMBERNUMBERpmpdt
<editor-folddefaultstate=collapseddesc=generatedgetterpascal>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
<editor-folddefaultstate=collapseddesc=generatedmethodisdbaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
at/owlsoft/owl/corbamodel/_searchfieldlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
_dbwizardfeaturespane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
<editor-folddefaultstate=collapseddesc=generatedgetterexitcommand>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
thisclassisgeneratedbyjooqthebooksstockstatus
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletmessageboardsmodelimplmbdiscussionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
-thefollowingcodewasgeneratedbycupVERSIONabetaYEARNUMBERthufebNUMBERNUMBERNUMBERNUMBERcetYEAR-
thisclassisgeneratedbyjooqcommentsoncolumnsofaccessibletablesandviews
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassettagserviceimplandrerunservicebuildertoregeneratethisclass
thehelperfor<tt>longlongseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/longlongseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
<editor-folddefaultstate=collapseddesc=generatedgetterruby>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
<editor-folddefaultstate=collapseddesc=generatedgetterisbegin>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
generatedbyjavaccdonoteditthislineexpressionparserjava
at/owlsoft/owl/communication/corba/icorbaapiservicejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/corba/se/impl/protocol/giopmsgheaders/profileaddrjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/com/sun/corba/se/giopidl/gidlsundayjuneNUMBERYEARNUMBERNUMBERNUMBERpmpdt
theholderfor<tt>longseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/longseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
marshallingcodeforopenwireformatforactivemqtopicmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/communication/corba/icorbareservationapijavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
auto-generatedbyeclipse
at/owlsoft/owl/communication/corba/_apifactorylisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/icorbasearchfieldcategoryholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
theinterfacefor<tt>current</tt>formoreinformationonoperationsinterfacessee<ahref=doc-files/generatedfileshtml>generatedfiles</a>org/omg/corba/currentoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/org/omg/portableserver/corbaidlsaturdayjulyNUMBERYEARNUMBERNUMBERNUMBERampdt
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesinsyscat
generated/wsclient
_editorstoredprocedures_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletassetmodelimplassetcategoryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
testcasefortheopenwiremarshallingforjournaltransactionnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/invalidoperationexceptionjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplclustergrouplocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassettagpropertylocalserviceimplandrerunservicebuildertoregeneratethisclass
testcasefortheopenwiremarshallingforresponsenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/user/icorbasystemuserstatusentrypoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
=thisfilehasbeengeneratedbyratsparsergeneratorVERSIONVERSIONVERSIONYEARrobertgrimmontuesdayoctoberNUMBERYEARatNUMBERNUMBERNUMBERpmeditatyourownrisk=
generatedbyjavaccdonoteditthislinetokenmgrerrorjavaVERSIONVERSIONpreNUMBER
<editor-folddefaultstate=collapseddesc=generatedmethodmatlabaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdynamicdatamappingmodelimplddmlistimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
arendererthatdrawsacircleateachdatapointwithadiameterthatisdeterminedbythez-valueinthedatasettherendererrequiresthedatasettobeaninstanceof@linkxyzdatasettheexampleshownhereisgeneratedbythe<code>xybubblechartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xybubblerenderersamplepngalt=xybubblerenderersamplepng/>
focalmockupsoapbindingimpljavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
generatedbyjjtreedonoteditthislinejdmnetmaskjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplrepositoryserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingorderitemlocalserviceimplandrerunservicebuildertoregeneratethisclass
com/sun/org/omg/corba/versionspechelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
marshallingcodeforopenwireformatforactivemqbytesmessagemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletblogsserviceimplblogsstatsuserlocalserviceimplandrerunservicebuildertoregeneratethisclass
_dbmodeladaptorpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplresourcecodeimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclassisgeneratedbyjooqstoredprocedures
generatedbyjavaccdonoteditthislinercctokenmanagerjava
generatedbyjjtreedonoteditthislineparsertreeconstantsjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletjournalserviceimpljournalarticlelocalserviceimplandrerunservicebuildertoregeneratethisclass
gen-begin|NUMBER-action|NUMBER|</editor-fold>gen-end|NUMBER-action|NUMBER|
<editor-folddefaultstate=collapseddesc=generatedmethodcaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
<editor-folddefaultstate=collapseddesc=generatedgetterpython>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/media/_icorbamediumexemplarstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqaclassmodellingforeignkeyrelationshipsbetweentablesofthesakilaschema
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplthemeserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplrepositoryentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplorganizationimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedgetterisindent>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
amultiplexinguiusedtocombine<code>internalframeui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplclustergroupimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedautomaticallyfromthecommonlocaledatarepositorydonotedit
_dbdecimalnumberpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatwednesdayseptemberNUMBERYEARNUMBERNUMBERNUMBERamus/central
testcasefortheopenwiremarshallingformessagedispatchnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
marshallingcodeforopenwireformatformessagemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/communication/corba/icorbaextendapipoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/icorbasystemusertransactionpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdynamicdatamappingserviceimplddmstructureserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqconvenienceaccesstoallsequencesinlukas
at/owlsoft/owl/corbamodel/user/_systemuserstatusentrylistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsocialmodelimplsocialequitysettingimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplshardlocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqconvenienceaccesstoallstoredproceduresandfunctionsintestNUMBER
at/owlsoft/owl/corbamodel/user/_rolelisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsocialserviceimplsocialequityloglocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqaclassmodellingforeignkeyrelationshipsbetweentablesofthetestschema
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplticketlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/icorbaauthenticationapihelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutsetserviceimplandrerunservicebuildertoregeneratethisclass
abox-and-whiskerrendererthisrendererrequiresa@linkboxandwhiskercategorydatasetandisforusewiththe@linkcategoryplotclasstheexampleshownhereisgeneratedbythe<code>boxandwhiskerchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/boxandwhiskerrenderersamplepngalt=boxandwhiskerrenderersamplepng/>
thehelperfor<tt>stringvalue</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/stringvaluehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromorbidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
testcasefortheopenwiremarshallingformessagedispatchnotificationnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletimagegalleryserviceimpligimageserviceimplandrerunservicebuildertoregeneratethisclass
mainpartyjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
generatedbyjjtreedonoteditthislinejdmmanagersjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplresourcelocalserviceimplandrerunservicebuildertoregeneratethisclass
skeletonclassgeneratedbyrmicdonoteditcontentssubjecttochangewithoutnotice
_postgresqlconnectionpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
at/owlsoft/owl/corbamodel/user/icorbaroleoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thehelperfor<tt>identifier</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/identifierhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
at/owlsoft/owl/corbamodel/user/icorbasystemuserjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
testcasefortheopenwiremarshallingfornetworkbridgefilternotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
com/sun/org/omg/corba/valuedefpackage/fullvaluedescriptionjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
generatedbyjjtreedonoteditthislinejdmenterprisejava
thisclassisgeneratedbyjooqobjectsaccessibletotheuser
amultiplexinguiusedtocombine<code>treeui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
testcasefortheopenwiremarshallingfordestinationinfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
generatedbyjjtreedonoteditthislinejdmaclblockjava
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsocialserviceimplsocialactivityinterpreterlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/icorbasystemuserapipoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
testcasefortheopenwiremarshallingforactivemqstreammessagenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletbookmarksserviceimplbookmarksfolderserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedgetterbackcommand>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/media/itagholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplwebdavpropsimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedbyjavaccdonoteditthislineelparserconstantsjava
at/owlsoft/owl/corbamodel/media/corbamediumexemplarstatushelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
customerinformationjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbmessageflaglocalserviceimplandrerunservicebuildertoregeneratethisclass
generatedbyjjtreedonoteditthislinenodejava
thisclassisgeneratedbyjooqconvenienceaccesstoallsequencesinpublic
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutsetbranchlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/communication/corba/_icorbasystemuserapistubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletassetmodelimplassettagimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedmethodiscompilableaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
at/owlsoft/owl/communication/corba/_rentalapilisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
filegeneratedbyhadooprecordcompilerdonotedit
thehelperfor<tt>structmember</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/structmemberhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbstatsuserlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplwebsiteimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
com/sun/org/omg/corba/operationmodehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
$antlrVERSIONoct
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpllayoutrevisionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedentries
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletshoppingserviceimplshoppingorderlocalserviceimplandrerunservicebuildertoregeneratethisclass
javainterfacestubjavageneratedfromposeidonforumlposeidonforumlisdevelopedby<ahref=URL>gentleware</a>generatedwith<ahref=URL>velocity</a>templateengine
marshallingcodeforopenwireformatforflushcommandmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
testcasefortheopenwiremarshallingforbrokerinfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletwikiserviceimplwikinodelocalserviceimplandrerunservicebuildertoregeneratethisclass
_dbuserinfopane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
autogeneratedbyeclipse
marshallingcodeforopenwireformatforactivemqobjectmessagemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thisclassisgeneratedbyjooqcheckexistenceofanauthor
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdocumentlibrarymodelimpldlfileentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedbyjjtreedonoteditthislinejdmtrapitemjava
thehelperfor<tt>valuebase</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplorganizationserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/_systemuserlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
standardtestmachinerydonotmodifyanythingbelow-itsastandardchunkofcodewhosepurposeistomakeuserinteractionuniformandtherebymakeitsimplertoreadandunderstandsomeoneelsestest
testcasefortheopenwiremarshallingformessageidnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedmethodistemplateaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
$antlrVERSIONmar
at/owlsoft/owl/corbamodel/isearchfielddefinitionpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thehelperfor<tt>policytype</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/policytypehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/org/omg/portableserver/corbaidlsaturdayjulyNUMBERYEARNUMBERNUMBERNUMBERampdt
<editor-folddefaultstate=collapseddesc=generatedmethodpascalaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimpllayoutprototypeimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclassisgeneratedbyjooqanentityholdingbooks
customerjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
$antlrVERSIONmai
theholderfor<tt>principal</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>acontainerclassforvaluesoftype<code>principal</code>thatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>principal</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>principalholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>myprincipalholder</code>isaninstanceof<code>principalholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>myprincipalholdervalue</code>@sincejdkVERSION@deprecateddeprecatedbycorbaVERSION
theholderfor<tt>float</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassfora<code>float</code>thatisusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasanidl<code>float</code>asanoutorinoutparametertheprogrammermustpassaninstanceof<code>floatholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>myfloatholder</code>isaninstanceof<code>floatholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>myfloatholdervalue</code>@sincejdkVERSION
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplaccountimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclassisgeneratedbyjooqconvenienceaccesstoalltablesinsakila
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplreleaseimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplworkflowinstancelinkimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/communication/corba/icorbaextendapiholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/validation/_icorbavalidationmessagestubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforremovesubscriptioninfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/communication/corba/icorbareturnapiholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletassetserviceimplassetvocabularylocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletbookmarksserviceimplbookmarksfolderlocalserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/transactiontypejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplresourceserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplrepositoryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/validation/icorbavalidationmessageholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
<editor-folddefaultstate=collapseddesc=generatedgetterjava>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplresourceactionimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedgetterokcommand>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
com/sun/corba/se/impl/protocol/giopmsgheaders/addressingdispositionhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromsrc/share/classes/com/sun/corba/se/giopidl/gidlsundayjuneNUMBERYEARNUMBERNUMBERNUMBERpmpdt
at/owlsoft/owl/communication/corba/_rentalapilistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/corbasystemuserstatusholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletratingsmodelimplratingsstatsimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/communication/corba/icorbasearchapijavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
_dbentitystoredprocedurespane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteattuesdayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplusergroupserviceimplandrerunservicebuildertoregeneratethisclass
testcasefortheopenwiremarshallingforremovesubscriptioninfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
<editor-folddefaultstate=collapseddesc=generatedgetterc>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/media/_mediumexemplarstatusentrylisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
com/sun/org/omg/corba/repositoryidseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
at/owlsoft/owl/corbamodel/accounting/icorbarentalhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
generatedbyjavaccdonoteditthislineelparserjava
theholderfor<tt>wcharseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/wcharseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletannouncementsserviceimplannouncementsentrylocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletsocialmodelimplsocialequitylogimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/user/icorbasystemuserstatusentryjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
-thefollowingcodewasgeneratedbycupVERSIONjfrifebNUMBERNUMBERNUMBERNUMBERpstYEAR-
theholderfor<tt>ulonglongseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/ulonglongseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplemailaddresslocalserviceimplandrerunservicebuildertoregeneratethisclass
thehelperfor<tt>floatseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/floatseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
thisclassisgeneratedbyjooqconvenienceaccesstoallsequencesintest
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletmessageboardsmodelimplmbmessageimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplportletlocalserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatforconsumercontrolmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutsetprototypeserviceimplandrerunservicebuildertoregeneratethisclass
<editor-folddefaultstate=collapseddesc=generatedgetterisoopNUMBER>gen-begin|NUMBER-getter|NUMBER|NUMBER-preinit
at/owlsoft/owl/corbamodel/media/icorbamediumpoajavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
testcasefortheopenwiremarshallingfortransactioninfonotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/accounting/icorbafilingextensionholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thehelperfor<tt>doubleseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/doubleseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
thehelperfor<tt>idltype</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/idltypehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlNUMBERjuneYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletdocumentlibraryserviceimpldlapplocalserviceimplandrerunservicebuildertoregeneratethisclass
spellservicesoapjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
testcasefortheopenwiremarshallingforcontrolcommandnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletwikimodelimplwikinodeimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplemailaddressimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
thisclassisgeneratedbyjooqaclassmodellingforeignkeyrelationshipsbetweentablesofthelukasschema
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsoftwarecatalogserviceimplscproductscreenshotlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplpasswordpolicyimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
focalmockupservicejavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletimagegallerymodelimpligimageimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
testcasefortheopenwiremarshallingforactivemqqueuenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/validation/validationmodejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/user/icorbasystemusertransactionoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
_sqliteconnectionpane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteatthursdayoctoberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletbookmarksserviceimplbookmarksentryserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletexpandoserviceimplexpandovaluelocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletdynamicdatamappingmodelimplddmstoragelinkimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimplorganizationlocalserviceimplandrerunservicebuildertoregeneratethisclass
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletshoppingmodelimplshoppingcouponimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/communication/corba/icorbaauthenticationapiholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforpartialcommandmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletexpandomodelimplexpandocolumnimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/media/_mediumlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thisclassisgeneratedbyjooqaclassmodellingforeignkeyrelationshipsbetweentablesoftheschema
_dbentitysharedobjectspane_eoarchive_englishjavageneratedbyenterpriseobjectspaletteattuesdayseptemberNUMBERYEARNUMBERNUMBERNUMBERpmus/central
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplusergroupimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
<editor-folddefaultstate=collapseddesc=generatedmethodisoopaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
generatedbyjavaccdonoteditthislinescdparserconstantsjava
catalogproductcreateentityjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportalmodelimplportletitemimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletmessageboardsserviceimplmbdiscussionlocalserviceimplandrerunservicebuildertoregeneratethisclass
thisclassisgeneratedbyjooqcolumnsofuserstablesviewsandclusters
marshallingcodeforopenwireformatforsubscriptioninfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsocialserviceimplsocialrequestlocalserviceimplandrerunservicebuildertoregeneratethisclass
amultiplexinguiusedtocombine<code>scrollpaneui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
<editor-folddefaultstate=collapseddesc=generatedfields>gen-begin|fields|NUMBER|
thisclassisgeneratedbyjooqprocedureprivileges
generatedbyjavaccdonoteditthislineparseerrorjavaVERSIONVERSIONpreNUMBER
amultiplexinguiusedtocombine<code>progressbarui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
at/owlsoft/owl/communication/corba/icorbareservationapiholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
at/owlsoft/owl/corbamodel/validation/validationmodehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforactivemqqueuemarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletwikimodelimplwikipageimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
com/sun/org/omg/corba/_idltypestubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
theholderfor<tt>charseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/charseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletjournalserviceimpljournalarticleserviceimplandrerunservicebuildertoregeneratethisclass
thismethodiscalledfromwithintheconstructortoinitializetheformwarningdonotmodifythiscodethecontentofthismethodisalwaysregeneratedbytheformeditor
arendererthatrepresentsdatafroman@linkxyzdatasetbydrawingacolorblockateachxypointwherethecolorisafunctionofthez-valuefromthedatasettheexampleshownhereisgeneratedbythe<code>xyblockchartdemoVERSIONjava</code>programincludedinthejfreechartdemocollection<br><br><imgsrc=images/xyblockrenderersamplepngalt=xyblockrenderersamplepng/>@sinceVERSION
com/sun/org/omg/corba/attributemodehelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletblogsserviceimplblogsentryserviceimplandrerunservicebuildertoregeneratethisclass
at/owlsoft/owl/corbamodel/user/_icorbasystemuserstubjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
amultiplexinguiusedtocombine<code>sliderui</code>s<p>thisfilewasautomaticallygeneratedbyautomulti@authorottomultey
at/owlsoft/owl/corbamodel/accounting/_activitylisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforsessioninfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
$antlrVERSIONdec
theholderfor<tt>object</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>aholderclassforacorbaobjectreferenceavalueoftype<code>orgomgcorbaobject</code>itisusuallyusedtostoreoutandinoutparametersinidlmethodsifanidlmethodsignaturehasacorbaobjectreferenceasanoutorinoutparametertheprogrammermustpassaninstanceof<code>objectholder</code>asthecorrespondingparameterinthemethodinvocationforinoutparameterstheprogrammermustalsofilltheinvaluetobesenttotheserverbeforethemethodinvocationreturnstheorbwillfillinthevaluecorrespondingtotheoutvaluereturnedfromtheserver<p>if<code>myobjectholder</code>isaninstanceof<code>objectholder</code>thevaluestoredinits<code>value</code>fieldcanbeaccessedwith<code>myobjectholdervalue</code>@sincejdkVERSION
nodefactory<code>xtctypicaltreefactory</code><p/>thisclasshasbeengeneratedbythextcfactoryfactoryVERSIONVERSIONVERSIONYEARrobertgrimm
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletblogsmodelimplblogsentryimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
marshallingcodeforopenwireformatforactivemqtempdestinationmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
spellservicelocatorjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
testcasefortheopenwiremarshallingforexceptionresponsenotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
testcasefortheopenwiremarshallingforlocaltransactionidnotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportalserviceimpllayoutsetbranchserviceimplandrerunservicebuildertoregeneratethisclass
spellservicesoapstubjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONaprNUMBERYEARNUMBERNUMBERNUMBERpdtwsdlNUMBERjavaemitter
at/owlsoft/owl/communication/corba/icorbasearchapioperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
marshallingcodeforopenwireformatforlastpartialcommandmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
thehelperfor<tt>longseqhelper</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/longseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
marshallingcodeforopenwireformatforactivemqtemptopicmarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
at/owlsoft/owl/corbamodel/accounting/_reservationlisthelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
thehelperfor<tt>anyseq</tt>formoreinformationonhelperfilessee<ahref=doc-files/generatedfileshtml#helper>generatedfileshelperfiles</a><p>org/omg/corba/anyseqhelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBERtheclassdefinitionhasbeenmodifiedtoconformtothefollowingomgspecifications<ul><li>orbcoreasdefinedbycorbaVERSION<ahref=URL>formal/NUMBER-NUMBER-NUMBER</a></li><li>idl/javalanguagemappingasdefinedin<ahref=URL>ptc/NUMBER-NUMBER-NUMBER</a></li></ul>
at/owlsoft/owl/corbamodel/validation/corbavalidationmessagestatushelperjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletexpandomodelimplexpandovalueimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
at/owlsoft/owl/corbamodel/media/_mediumexemplarstatusentrylistholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez
focalmockupsoapbindingskeletonjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
notefordevelopersnevermodifythisinterfacedirectlyaddmethodsto@linkcomliferayportletpollsmodelimplpollschoiceimplandrerunservicebuildertoautomaticallycopythemethoddeclarationstothisinterface
generatedfromframemirah
notefordevelopersnevermodifythisclassdirectlyaddcustomservicemethodsto@linkcomliferayportletsocialserviceimplsocialactivitylocalserviceimplandrerunservicebuildertoregeneratethisclass
marshallingcodeforopenwireformatfordestinationinfomarshallernotethisfileisautogenerated-donotmodifyifyouneedtomakeachangepleaseseethemodifythegroovyscriptsintheundersrc/gram/scriptandthenusemavenopenwiregeneratetoregeneratethisfile
com/sun/org/omg/corba/parametermodejavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromiridlthursdaymayNUMBERYEARNUMBERNUMBERNUMBERampdt
notesprojectjavathisfilewasauto-generatedfromwsdlbytheapacheaxisVERSIONoctNUMBERYEARNUMBERNUMBERNUMBERedtwsdlNUMBERjavaemitter
<editor-folddefaultstate=collapseddesc=generatedmethodperlaction>gen-begin|NUMBER-action|NUMBER|NUMBER-preaction
theholderfor<tt>booleanseq</tt>formoreinformationonholderfilessee<ahref=doc-files/generatedfileshtml#holder>generatedfilesholderfiles</a><p>org/omg/corba/booleanseqholderjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromstreamsidlNUMBERmayYEARNUMBERNUMBERNUMBERoclockgmt+NUMBERNUMBER
at/owlsoft/owl/corbamodel/accounting/icorbafilingextensionoperationsjavageneratedbytheidl-to-javacompilerportableVERSIONVERSIONfromcorbamodelidlmontagNUMBERVERSIONdezemberYEARNUMBERNUMBERuhrmez