KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > reportgenerator > reportdefinitions > ReportDefinition


1 /*
2  * This class was automatically generated with
3  * <a HREF="http://www.castor.org">Castor 0.9.4.3</a>, using an XML
4  * Schema.
5  * $Id$
6  */

7
8 package com.calipso.reportgenerator.reportdefinitions;
9
10   //---------------------------------/
11
//- Imported classes and packages -/
12
//---------------------------------/
13

14 import com.calipso.reportgenerator.reportdefinitions.types.ReportDefinitionReportTypeType;
15 import java.io.IOException JavaDoc;
16 import java.io.Reader JavaDoc;
17 import java.io.Serializable JavaDoc;
18 import java.io.Writer JavaDoc;
19 import org.exolab.castor.xml.MarshalException;
20 import org.exolab.castor.xml.Marshaller;
21 import org.exolab.castor.xml.Unmarshaller;
22 import org.exolab.castor.xml.ValidationException;
23 import org.xml.sax.ContentHandler JavaDoc;
24
25 /**
26  * Class ReportDefinition.
27  *
28  * @version $Revision$ $Date$
29  */

30 public class ReportDefinition implements java.io.Serializable JavaDoc {
31
32
33       //--------------------------/
34
//- Class/Member Variables -/
35
//--------------------------/
36

37     /**
38      * Field _id
39      */

40     private java.lang.String JavaDoc _id;
41
42     /**
43      * Field _description
44      */

45     private java.lang.String JavaDoc _description;
46
47     /**
48      * Field _reportSource
49      */

50     private java.lang.String JavaDoc _reportSource;
51
52     /**
53      * Field _entity
54      */

55     private java.lang.String JavaDoc _entity;
56
57     /**
58      * Field _isTransient
59      */

60     private boolean _isTransient;
61
62     /**
63      * keeps track of state for field: _isTransient
64      */

65     private boolean _has_isTransient;
66
67     /**
68      * Field _infoPage
69      */

70     private java.lang.String JavaDoc _infoPage;
71
72     /**
73      * Field _reportType
74      */

75     private com.calipso.reportgenerator.reportdefinitions.types.ReportDefinitionReportTypeType _reportType;
76
77     /**
78      * Field _title
79      */

80     private java.lang.String JavaDoc _title;
81
82     /**
83      * Field _pageHeding
84      */

85     private java.lang.String JavaDoc _pageHeding;
86
87     /**
88      * Field _pageFooter
89      */

90     private java.lang.String JavaDoc _pageFooter;
91
92     /**
93      * Field _multilanguage
94      */

95     private boolean _multilanguage = false;
96
97     /**
98      * keeps track of state for field: _multilanguage
99      */

100     private boolean _has_multilanguage;
101
102     /**
103      * Field _maxRowsDimensionReference
104      */

105     private java.lang.String JavaDoc _maxRowsDimensionReference;
106
107     /**
108      * Field _maxRowCount
109      */

110     private int _maxRowCount;
111
112     /**
113      * keeps track of state for field: _maxRowCount
114      */

115     private boolean _has_maxRowCount;
116
117     /**
118      * Field _visibleTotals
119      */

120     private boolean _visibleTotals = true;
121
122     /**
123      * keeps track of state for field: _visibleTotals
124      */

125     private boolean _has_visibleTotals;
126
127     /**
128      * Field _layoutDesign
129      */

130     private java.lang.String JavaDoc _layoutDesign;
131
132     /**
133      * Field _roles
134      */

135     private com.calipso.reportgenerator.reportdefinitions.Roles _roles;
136
137     /**
138      * Field _dimensionDefinitions
139      */

140     private com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions _dimensionDefinitions;
141
142     /**
143      * Field _metricDefinitions
144      */

145     private com.calipso.reportgenerator.reportdefinitions.MetricDefinitions _metricDefinitions;
146
147     /**
148      * Field _actionDefinitions
149      */

150     private com.calipso.reportgenerator.reportdefinitions.ActionDefinitions _actionDefinitions;
151
152     /**
153      * Field _filterDefinitions
154      */

155     private com.calipso.reportgenerator.reportdefinitions.FilterDefinitions _filterDefinitions;
156
157     /**
158      * Field _parameterValues
159      */

160     private com.calipso.reportgenerator.reportdefinitions.ParameterValues _parameterValues;
161
162     /**
163      * Field _localizations
164      */

165     private com.calipso.reportgenerator.reportdefinitions.Localizations _localizations;
166
167     /**
168      * Field _drillDownDefinitions
169      */

170     private com.calipso.reportgenerator.reportdefinitions.DrillDownDefinitions _drillDownDefinitions;
171
172
173       //----------------/
174
//- Constructors -/
175
//----------------/
176

177     public ReportDefinition() {
178         super();
179     } //-- com.calipso.reportgenerator.reportdefinitions.ReportDefinition()
180

181
182       //-----------/
183
//- Methods -/
184
//-----------/
185

186     /**
187      * Method deleteMaxRowCount
188      */

189     public void deleteMaxRowCount()
190     {
191         this._has_maxRowCount= false;
192     } //-- void deleteMaxRowCount()
193

194     /**
195      * Method deleteMultilanguage
196      */

197     public void deleteMultilanguage()
198     {
199         this._has_multilanguage= false;
200     } //-- void deleteMultilanguage()
201

202     /**
203      * Method deleteVisibleTotals
204      */

205     public void deleteVisibleTotals()
206     {
207         this._has_visibleTotals= false;
208     } //-- void deleteVisibleTotals()
209

210     /**
211      * Method getActionDefinitionsReturns the value of field
212      * 'actionDefinitions'.
213      *
214      * @return the value of field 'actionDefinitions'.
215      */

216     public com.calipso.reportgenerator.reportdefinitions.ActionDefinitions getActionDefinitions()
217     {
218         return this._actionDefinitions;
219     } //-- com.calipso.reportgenerator.reportdefinitions.ActionDefinitions getActionDefinitions()
220

221     /**
222      * Method getDescriptionReturns the value of field
223      * 'description'.
224      *
225      * @return the value of field 'description'.
226      */

227     public java.lang.String JavaDoc getDescription()
228     {
229         return this._description;
230     } //-- java.lang.String getDescription()
231

232     /**
233      * Method getDimensionDefinitionsReturns the value of field
234      * 'dimensionDefinitions'.
235      *
236      * @return the value of field 'dimensionDefinitions'.
237      */

238     public com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions getDimensionDefinitions()
239     {
240         return this._dimensionDefinitions;
241     } //-- com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions getDimensionDefinitions()
242

243     /**
244      * Method getDrillDownDefinitionsReturns the value of field
245      * 'drillDownDefinitions'.
246      *
247      * @return the value of field 'drillDownDefinitions'.
248      */

249     public com.calipso.reportgenerator.reportdefinitions.DrillDownDefinitions getDrillDownDefinitions()
250     {
251         return this._drillDownDefinitions;
252     } //-- com.calipso.reportgenerator.reportdefinitions.DrillDownDefinitions getDrillDownDefinitions()
253

254     /**
255      * Method getEntityReturns the value of field 'entity'.
256      *
257      * @return the value of field 'entity'.
258      */

259     public java.lang.String JavaDoc getEntity()
260     {
261         return this._entity;
262     } //-- java.lang.String getEntity()
263

264     /**
265      * Method getFilterDefinitionsReturns the value of field
266      * 'filterDefinitions'.
267      *
268      * @return the value of field 'filterDefinitions'.
269      */

270     public com.calipso.reportgenerator.reportdefinitions.FilterDefinitions getFilterDefinitions()
271     {
272         return this._filterDefinitions;
273     } //-- com.calipso.reportgenerator.reportdefinitions.FilterDefinitions getFilterDefinitions()
274

275     /**
276      * Method getIdReturns the value of field 'id'.
277      *
278      * @return the value of field 'id'.
279      */

280     public java.lang.String JavaDoc getId()
281     {
282         return this._id;
283     } //-- java.lang.String getId()
284

285     /**
286      * Method getInfoPageReturns the value of field 'infoPage'.
287      *
288      * @return the value of field 'infoPage'.
289      */

290     public java.lang.String JavaDoc getInfoPage()
291     {
292         return this._infoPage;
293     } //-- java.lang.String getInfoPage()
294

295     /**
296      * Method getIsTransientReturns the value of field
297      * 'isTransient'.
298      *
299      * @return the value of field 'isTransient'.
300      */

301     public boolean getIsTransient()
302     {
303         return this._isTransient;
304     } //-- boolean getIsTransient()
305

306     /**
307      * Method getLayoutDesignReturns the value of field
308      * 'layoutDesign'.
309      *
310      * @return the value of field 'layoutDesign'.
311      */

312     public java.lang.String JavaDoc getLayoutDesign()
313     {
314         return this._layoutDesign;
315     } //-- java.lang.String getLayoutDesign()
316

317     /**
318      * Method getLocalizationsReturns the value of field
319      * 'localizations'.
320      *
321      * @return the value of field 'localizations'.
322      */

323     public com.calipso.reportgenerator.reportdefinitions.Localizations getLocalizations()
324     {
325         return this._localizations;
326     } //-- com.calipso.reportgenerator.reportdefinitions.Localizations getLocalizations()
327

328     /**
329      * Method getMaxRowCountReturns the value of field
330      * 'maxRowCount'.
331      *
332      * @return the value of field 'maxRowCount'.
333      */

334     public int getMaxRowCount()
335     {
336         return this._maxRowCount;
337     } //-- int getMaxRowCount()
338

339     /**
340      * Method getMaxRowsDimensionReferenceReturns the value of
341      * field 'maxRowsDimensionReference'.
342      *
343      * @return the value of field 'maxRowsDimensionReference'.
344      */

345     public java.lang.String JavaDoc getMaxRowsDimensionReference()
346     {
347         return this._maxRowsDimensionReference;
348     } //-- java.lang.String getMaxRowsDimensionReference()
349

350     /**
351      * Method getMetricDefinitionsReturns the value of field
352      * 'metricDefinitions'.
353      *
354      * @return the value of field 'metricDefinitions'.
355      */

356     public com.calipso.reportgenerator.reportdefinitions.MetricDefinitions getMetricDefinitions()
357     {
358         return this._metricDefinitions;
359     } //-- com.calipso.reportgenerator.reportdefinitions.MetricDefinitions getMetricDefinitions()
360

361     /**
362      * Method getMultilanguageReturns the value of field
363      * 'multilanguage'.
364      *
365      * @return the value of field 'multilanguage'.
366      */

367     public boolean getMultilanguage()
368     {
369         return this._multilanguage;
370     } //-- boolean getMultilanguage()
371

372     /**
373      * Method getPageFooterReturns the value of field 'pageFooter'.
374      *
375      * @return the value of field 'pageFooter'.
376      */

377     public java.lang.String JavaDoc getPageFooter()
378     {
379         return this._pageFooter;
380     } //-- java.lang.String getPageFooter()
381

382     /**
383      * Method getPageHedingReturns the value of field 'pageHeding'.
384      *
385      * @return the value of field 'pageHeding'.
386      */

387     public java.lang.String JavaDoc getPageHeding()
388     {
389         return this._pageHeding;
390     } //-- java.lang.String getPageHeding()
391

392     /**
393      * Method getParameterValuesReturns the value of field
394      * 'parameterValues'.
395      *
396      * @return the value of field 'parameterValues'.
397      */

398     public com.calipso.reportgenerator.reportdefinitions.ParameterValues getParameterValues()
399     {
400         return this._parameterValues;
401     } //-- com.calipso.reportgenerator.reportdefinitions.ParameterValues getParameterValues()
402

403     /**
404      * Method getReportSourceReturns the value of field
405      * 'reportSource'.
406      *
407      * @return the value of field 'reportSource'.
408      */

409     public java.lang.String JavaDoc getReportSource()
410     {
411         return this._reportSource;
412     } //-- java.lang.String getReportSource()
413

414     /**
415      * Method getReportTypeReturns the value of field 'reportType'.
416      *
417      * @return the value of field 'reportType'.
418      */

419     public com.calipso.reportgenerator.reportdefinitions.types.ReportDefinitionReportTypeType getReportType()
420     {
421         return this._reportType;
422     } //-- com.calipso.reportgenerator.reportdefinitions.types.ReportDefinitionReportTypeType getReportType()
423

424     /**
425      * Method getRolesReturns the value of field 'roles'.
426      *
427      * @return the value of field 'roles'.
428      */

429     public com.calipso.reportgenerator.reportdefinitions.Roles getRoles()
430     {
431         return this._roles;
432     } //-- com.calipso.reportgenerator.reportdefinitions.Roles getRoles()
433

434     /**
435      * Method getTitleReturns the value of field 'title'.
436      *
437      * @return the value of field 'title'.
438      */

439     public java.lang.String JavaDoc getTitle()
440     {
441         return this._title;
442     } //-- java.lang.String getTitle()
443

444     /**
445      * Method getVisibleTotalsReturns the value of field
446      * 'visibleTotals'.
447      *
448      * @return the value of field 'visibleTotals'.
449      */

450     public boolean getVisibleTotals()
451     {
452         return this._visibleTotals;
453     } //-- boolean getVisibleTotals()
454

455     /**
456      * Method hasIsTransient
457      */

458     public boolean hasIsTransient()
459     {
460         return this._has_isTransient;
461     } //-- boolean hasIsTransient()
462

463     /**
464      * Method hasMaxRowCount
465      */

466     public boolean hasMaxRowCount()
467     {
468         return this._has_maxRowCount;
469     } //-- boolean hasMaxRowCount()
470

471     /**
472      * Method hasMultilanguage
473      */

474     public boolean hasMultilanguage()
475     {
476         return this._has_multilanguage;
477     } //-- boolean hasMultilanguage()
478

479     /**
480      * Method hasVisibleTotals
481      */

482     public boolean hasVisibleTotals()
483     {
484         return this._has_visibleTotals;
485     } //-- boolean hasVisibleTotals()
486

487     /**
488      * Method isValid
489      */

490     public boolean isValid()
491     {
492         try {
493             validate();
494         }
495         catch (org.exolab.castor.xml.ValidationException vex) {
496             return false;
497         }
498         return true;
499     } //-- boolean isValid()
500

501     /**
502      * Method marshal
503      *
504      * @param out
505      */

506     public void marshal(java.io.Writer JavaDoc out)
507         throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
508     {
509         
510         Marshaller.marshal(this, out);
511     } //-- void marshal(java.io.Writer)
512

513     /**
514      * Method marshal
515      *
516      * @param handler
517      */

518     public void marshal(org.xml.sax.ContentHandler JavaDoc handler)
519         throws java.io.IOException JavaDoc, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
520     {
521         
522         Marshaller.marshal(this, handler);
523     } //-- void marshal(org.xml.sax.ContentHandler)
524

525     /**
526      * Method setActionDefinitionsSets the value of field
527      * 'actionDefinitions'.
528      *
529      * @param actionDefinitions the value of field
530      * 'actionDefinitions'.
531      */

532     public void setActionDefinitions(com.calipso.reportgenerator.reportdefinitions.ActionDefinitions actionDefinitions)
533     {
534         this._actionDefinitions = actionDefinitions;
535     } //-- void setActionDefinitions(com.calipso.reportgenerator.reportdefinitions.ActionDefinitions)
536

537     /**
538      * Method setDescriptionSets the value of field 'description'.
539      *
540      * @param description the value of field 'description'.
541      */

542     public void setDescription(java.lang.String JavaDoc description)
543     {
544         this._description = description;
545     } //-- void setDescription(java.lang.String)
546

547     /**
548      * Method setDimensionDefinitionsSets the value of field
549      * 'dimensionDefinitions'.
550      *
551      * @param dimensionDefinitions the value of field
552      * 'dimensionDefinitions'.
553      */

554     public void setDimensionDefinitions(com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions dimensionDefinitions)
555     {
556         this._dimensionDefinitions = dimensionDefinitions;
557     } //-- void setDimensionDefinitions(com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions)
558

559     /**
560      * Method setDrillDownDefinitionsSets the value of field
561      * 'drillDownDefinitions'.
562      *
563      * @param drillDownDefinitions the value of field
564      * 'drillDownDefinitions'.
565      */

566     public void setDrillDownDefinitions(com.calipso.reportgenerator.reportdefinitions.DrillDownDefinitions drillDownDefinitions)
567     {
568         this._drillDownDefinitions = drillDownDefinitions;
569     } //-- void setDrillDownDefinitions(com.calipso.reportgenerator.reportdefinitions.DrillDownDefinitions)
570

571     /**
572      * Method setEntitySets the value of field 'entity'.
573      *
574      * @param entity the value of field 'entity'.
575      */

576     public void setEntity(java.lang.String JavaDoc entity)
577     {
578         this._entity = entity;
579     } //-- void setEntity(java.lang.String)
580

581     /**
582      * Method setFilterDefinitionsSets the value of field
583      * 'filterDefinitions'.
584      *
585      * @param filterDefinitions the value of field
586      * 'filterDefinitions'.
587      */

588     public void setFilterDefinitions(com.calipso.reportgenerator.reportdefinitions.FilterDefinitions filterDefinitions)
589     {
590         this._filterDefinitions = filterDefinitions;
591     } //-- void setFilterDefinitions(com.calipso.reportgenerator.reportdefinitions.FilterDefinitions)
592

593     /**
594      * Method setIdSets the value of field 'id'.
595      *
596      * @param id the value of field 'id'.
597      */

598     public void setId(java.lang.String JavaDoc id)
599     {
600         this._id = id;
601     } //-- void setId(java.lang.String)
602

603     /**
604      * Method setInfoPageSets the value of field 'infoPage'.
605      *
606      * @param infoPage the value of field 'infoPage'.
607      */

608     public void setInfoPage(java.lang.String JavaDoc infoPage)
609     {
610         this._infoPage = infoPage;
611     } //-- void setInfoPage(java.lang.String)
612

613     /**
614      * Method setIsTransientSets the value of field 'isTransient'.
615      *
616      * @param isTransient the value of field 'isTransient'.
617      */

618     public void setIsTransient(boolean isTransient)
619     {
620         this._isTransient = isTransient;
621         this._has_isTransient = true;
622     } //-- void setIsTransient(boolean)
623

624     /**
625      * Method setLayoutDesignSets the value of field
626      * 'layoutDesign'.
627      *
628      * @param layoutDesign the value of field 'layoutDesign'.
629      */

630     public void setLayoutDesign(java.lang.String JavaDoc layoutDesign)
631     {
632         this._layoutDesign = layoutDesign;
633     } //-- void setLayoutDesign(java.lang.String)
634

635     /**
636      * Method setLocalizationsSets the value of field
637      * 'localizations'.
638      *
639      * @param localizations the value of field 'localizations'.
640      */

641     public void setLocalizations(com.calipso.reportgenerator.reportdefinitions.Localizations localizations)
642     {
643         this._localizations = localizations;
644     } //-- void setLocalizations(com.calipso.reportgenerator.reportdefinitions.Localizations)
645

646     /**
647      * Method setMaxRowCountSets the value of field 'maxRowCount'.
648      *
649      * @param maxRowCount the value of field 'maxRowCount'.
650      */

651     public void setMaxRowCount(int maxRowCount)
652     {
653         this._maxRowCount = maxRowCount;
654         this._has_maxRowCount = true;
655     } //-- void setMaxRowCount(int)
656

657     /**
658      * Method setMaxRowsDimensionReferenceSets the value of field
659      * 'maxRowsDimensionReference'.
660      *
661      * @param maxRowsDimensionReference the value of field
662      * 'maxRowsDimensionReference'.
663      */

664     public void setMaxRowsDimensionReference(java.lang.String JavaDoc maxRowsDimensionReference)
665     {
666         this._maxRowsDimensionReference = maxRowsDimensionReference;
667     } //-- void setMaxRowsDimensionReference(java.lang.String)
668

669     /**
670      * Method setMetricDefinitionsSets the value of field
671      * 'metricDefinitions'.
672      *
673      * @param metricDefinitions the value of field
674      * 'metricDefinitions'.
675      */

676     public void setMetricDefinitions(com.calipso.reportgenerator.reportdefinitions.MetricDefinitions metricDefinitions)
677     {
678         this._metricDefinitions = metricDefinitions;
679     } //-- void setMetricDefinitions(com.calipso.reportgenerator.reportdefinitions.MetricDefinitions)
680

681     /**
682      * Method setMultilanguageSets the value of field
683      * 'multilanguage'.
684      *
685      * @param multilanguage the value of field 'multilanguage'.
686      */

687     public void setMultilanguage(boolean multilanguage)
688     {
689         this._multilanguage = multilanguage;
690         this._has_multilanguage = true;
691     } //-- void setMultilanguage(boolean)
692

693     /**
694      * Method setPageFooterSets the value of field 'pageFooter'.
695      *
696      * @param pageFooter the value of field 'pageFooter'.
697      */

698     public void setPageFooter(java.lang.String JavaDoc pageFooter)
699     {
700         this._pageFooter = pageFooter;
701     } //-- void setPageFooter(java.lang.String)
702

703     /**
704      * Method setPageHedingSets the value of field 'pageHeding'.
705      *
706      * @param pageHeding the value of field 'pageHeding'.
707      */

708     public void setPageHeding(java.lang.String JavaDoc pageHeding)
709     {
710         this._pageHeding = pageHeding;
711     } //-- void setPageHeding(java.lang.String)
712

713     /**
714      * Method setParameterValuesSets the value of field
715      * 'parameterValues'.
716      *
717      * @param parameterValues the value of field 'parameterValues'.
718      */

719     public void setParameterValues(com.calipso.reportgenerator.reportdefinitions.ParameterValues parameterValues)
720     {
721         this._parameterValues = parameterValues;
722     } //-- void setParameterValues(com.calipso.reportgenerator.reportdefinitions.ParameterValues)
723

724     /**
725      * Method setReportSourceSets the value of field
726      * 'reportSource'.
727      *
728      * @param reportSource the value of field 'reportSource'.
729      */

730     public void setReportSource(java.lang.String JavaDoc reportSource)
731     {
732         this._reportSource = reportSource;
733     } //-- void setReportSource(java.lang.String)
734

735     /**
736      * Method setReportTypeSets the value of field 'reportType'.
737      *
738      * @param reportType the value of field 'reportType'.
739      */

740     public void setReportType(com.calipso.reportgenerator.reportdefinitions.types.ReportDefinitionReportTypeType reportType)
741     {
742         this._reportType = reportType;
743     } //-- void setReportType(com.calipso.reportgenerator.reportdefinitions.types.ReportDefinitionReportTypeType)
744

745     /**
746      * Method setRolesSets the value of field 'roles'.
747      *
748      * @param roles the value of field 'roles'.
749      */

750     public void setRoles(com.calipso.reportgenerator.reportdefinitions.Roles roles)
751     {
752         this._roles = roles;
753     } //-- void setRoles(com.calipso.reportgenerator.reportdefinitions.Roles)
754

755     /**
756      * Method setTitleSets the value of field 'title'.
757      *
758      * @param title the value of field 'title'.
759      */

760     public void setTitle(java.lang.String JavaDoc title)
761     {
762         this._title = title;
763     } //-- void setTitle(java.lang.String)
764

765     /**
766      * Method setVisibleTotalsSets the value of field
767      * 'visibleTotals'.
768      *
769      * @param visibleTotals the value of field 'visibleTotals'.
770      */

771     public void setVisibleTotals(boolean visibleTotals)
772     {
773         this._visibleTotals = visibleTotals;
774         this._has_visibleTotals = true;
775     } //-- void setVisibleTotals(boolean)
776

777     /**
778      * Method unmarshal
779      *
780      * @param reader
781      */

782     public static com.calipso.reportgenerator.reportdefinitions.ReportDefinition unmarshal(java.io.Reader JavaDoc reader)
783         throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
784     {
785         return (com.calipso.reportgenerator.reportdefinitions.ReportDefinition) Unmarshaller.unmarshal(com.calipso.reportgenerator.reportdefinitions.ReportDefinition.class, reader);
786     } //-- com.calipso.reportgenerator.reportdefinitions.ReportDefinition unmarshal(java.io.Reader)
787

788     /**
789      * Method validate
790      */

791     public void validate()
792         throws org.exolab.castor.xml.ValidationException
793     {
794         org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
795         validator.validate(this);
796     } //-- void validate()
797

798 }
799
Popular Tags