Source Code Cross Referenced for AlertEntryType.java in  » ESB » cbesb-1.2 » com » bostechcorp » cbesb » alert » x10 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ESB » cbesb 1.2 » com.bostechcorp.cbesb.alert.x10 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * XML Type:  alertEntryType
003:         * Namespace: http://cbesb.bostechcorp.com/alert/1.0
004:         * Java type: com.bostechcorp.cbesb.alert.x10.AlertEntryType
005:         *
006:         * Automatically generated - do not modify.
007:         */
008:        package com.bostechcorp.cbesb.alert.x10;
009:
010:        /**
011:         * An XML alertEntryType(@http://cbesb.bostechcorp.com/alert/1.0).
012:         *
013:         * This is a complex type.
014:         */
015:        public interface AlertEntryType extends org.apache.xmlbeans.XmlObject {
016:            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
017:                    .typeSystemForClassLoader(
018:                            AlertEntryType.class.getClassLoader(),
019:                            "schemaorg_apache_xmlbeans.system.sF259B946CC6DFC609F8E7F1ECC7FFD8F")
020:                    .resolveHandle("alertentrytype88e6type");
021:
022:            /**
023:             * Gets array of all "source" elements
024:             */
025:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source[] getSourceArray();
026:
027:            /**
028:             * Gets ith "source" element
029:             */
030:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source getSourceArray(
031:                    int i);
032:
033:            /**
034:             * Returns number of "source" element
035:             */
036:            int sizeOfSourceArray();
037:
038:            /**
039:             * Sets array of all "source" element
040:             */
041:            void setSourceArray(
042:                    com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source[] sourceArray);
043:
044:            /**
045:             * Sets ith "source" element
046:             */
047:            void setSourceArray(int i,
048:                    com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source source);
049:
050:            /**
051:             * Inserts and returns a new empty value (as xml) as the ith "source" element
052:             */
053:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source insertNewSource(
054:                    int i);
055:
056:            /**
057:             * Appends and returns a new empty value (as xml) as the last "source" element
058:             */
059:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source addNewSource();
060:
061:            /**
062:             * Removes the ith "source" element
063:             */
064:            void removeSource(int i);
065:
066:            /**
067:             * Gets the "sourceModifier" element
068:             */
069:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.SourceModifier getSourceModifier();
070:
071:            /**
072:             * Sets the "sourceModifier" element
073:             */
074:            void setSourceModifier(
075:                    com.bostechcorp.cbesb.alert.x10.AlertEntryType.SourceModifier sourceModifier);
076:
077:            /**
078:             * Appends and returns a new empty "sourceModifier" element
079:             */
080:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.SourceModifier addNewSourceModifier();
081:
082:            /**
083:             * Gets the "comparsion" element
084:             */
085:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Comparsion getComparsion();
086:
087:            /**
088:             * Sets the "comparsion" element
089:             */
090:            void setComparsion(
091:                    com.bostechcorp.cbesb.alert.x10.AlertEntryType.Comparsion comparsion);
092:
093:            /**
094:             * Appends and returns a new empty "comparsion" element
095:             */
096:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Comparsion addNewComparsion();
097:
098:            /**
099:             * Gets the "duration" element
100:             */
101:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Duration getDuration();
102:
103:            /**
104:             * Sets the "duration" element
105:             */
106:            void setDuration(
107:                    com.bostechcorp.cbesb.alert.x10.AlertEntryType.Duration duration);
108:
109:            /**
110:             * Appends and returns a new empty "duration" element
111:             */
112:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Duration addNewDuration();
113:
114:            /**
115:             * Gets the "action" element
116:             */
117:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Action getAction();
118:
119:            /**
120:             * Sets the "action" element
121:             */
122:            void setAction(
123:                    com.bostechcorp.cbesb.alert.x10.AlertEntryType.Action action);
124:
125:            /**
126:             * Appends and returns a new empty "action" element
127:             */
128:            com.bostechcorp.cbesb.alert.x10.AlertEntryType.Action addNewAction();
129:
130:            /**
131:             * Gets the "id" attribute
132:             */
133:            java.lang.String getId();
134:
135:            /**
136:             * Gets (as xml) the "id" attribute
137:             */
138:            org.apache.xmlbeans.XmlString xgetId();
139:
140:            /**
141:             * True if has "id" attribute
142:             */
143:            boolean isSetId();
144:
145:            /**
146:             * Sets the "id" attribute
147:             */
148:            void setId(java.lang.String id);
149:
150:            /**
151:             * Sets (as xml) the "id" attribute
152:             */
153:            void xsetId(org.apache.xmlbeans.XmlString id);
154:
155:            /**
156:             * Unsets the "id" attribute
157:             */
158:            void unsetId();
159:
160:            /**
161:             * Gets the "description" attribute
162:             */
163:            java.lang.String getDescription();
164:
165:            /**
166:             * Gets (as xml) the "description" attribute
167:             */
168:            org.apache.xmlbeans.XmlString xgetDescription();
169:
170:            /**
171:             * True if has "description" attribute
172:             */
173:            boolean isSetDescription();
174:
175:            /**
176:             * Sets the "description" attribute
177:             */
178:            void setDescription(java.lang.String description);
179:
180:            /**
181:             * Sets (as xml) the "description" attribute
182:             */
183:            void xsetDescription(org.apache.xmlbeans.XmlString description);
184:
185:            /**
186:             * Unsets the "description" attribute
187:             */
188:            void unsetDescription();
189:
190:            /**
191:             * Gets the "criticality" attribute
192:             */
193:            com.bostechcorp.cbesb.alert.x10.CriticalityType.Enum getCriticality();
194:
195:            /**
196:             * Gets (as xml) the "criticality" attribute
197:             */
198:            com.bostechcorp.cbesb.alert.x10.CriticalityType xgetCriticality();
199:
200:            /**
201:             * True if has "criticality" attribute
202:             */
203:            boolean isSetCriticality();
204:
205:            /**
206:             * Sets the "criticality" attribute
207:             */
208:            void setCriticality(
209:                    com.bostechcorp.cbesb.alert.x10.CriticalityType.Enum criticality);
210:
211:            /**
212:             * Sets (as xml) the "criticality" attribute
213:             */
214:            void xsetCriticality(
215:                    com.bostechcorp.cbesb.alert.x10.CriticalityType criticality);
216:
217:            /**
218:             * Unsets the "criticality" attribute
219:             */
220:            void unsetCriticality();
221:
222:            /**
223:             * An XML source(@http://cbesb.bostechcorp.com/alert/1.0).
224:             *
225:             * This is an atomic type that is a restriction of com.bostechcorp.cbesb.alert.x10.AlertEntryType$Source.
226:             */
227:            public interface Source extends org.apache.xmlbeans.XmlString {
228:                public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
229:                        .typeSystemForClassLoader(
230:                                Source.class.getClassLoader(),
231:                                "schemaorg_apache_xmlbeans.system.sF259B946CC6DFC609F8E7F1ECC7FFD8F")
232:                        .resolveHandle("source969delemtype");
233:
234:                /**
235:                 * Gets the "type" attribute
236:                 */
237:                java.lang.String getType();
238:
239:                /**
240:                 * Gets (as xml) the "type" attribute
241:                 */
242:                org.apache.xmlbeans.XmlString xgetType();
243:
244:                /**
245:                 * True if has "type" attribute
246:                 */
247:                boolean isSetType();
248:
249:                /**
250:                 * Sets the "type" attribute
251:                 */
252:                void setType(java.lang.String type);
253:
254:                /**
255:                 * Sets (as xml) the "type" attribute
256:                 */
257:                void xsetType(org.apache.xmlbeans.XmlString type);
258:
259:                /**
260:                 * Unsets the "type" attribute
261:                 */
262:                void unsetType();
263:
264:                /**
265:                 * A factory class with static methods for creating instances
266:                 * of this type.
267:                 */
268:
269:                public static final class Factory {
270:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source newInstance() {
271:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source) org.apache.xmlbeans.XmlBeans
272:                                .getContextTypeLoader().newInstance(type, null);
273:                    }
274:
275:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source newInstance(
276:                            org.apache.xmlbeans.XmlOptions options) {
277:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Source) org.apache.xmlbeans.XmlBeans
278:                                .getContextTypeLoader().newInstance(type,
279:                                        options);
280:                    }
281:
282:                    private Factory() {
283:                    } // No instance of this class allowed
284:                }
285:            }
286:
287:            /**
288:             * An XML sourceModifier(@http://cbesb.bostechcorp.com/alert/1.0).
289:             *
290:             * This is an atomic type that is a restriction of com.bostechcorp.cbesb.alert.x10.AlertEntryType$SourceModifier.
291:             */
292:            public interface SourceModifier extends
293:                    org.apache.xmlbeans.XmlString {
294:                public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
295:                        .typeSystemForClassLoader(
296:                                SourceModifier.class.getClassLoader(),
297:                                "schemaorg_apache_xmlbeans.system.sF259B946CC6DFC609F8E7F1ECC7FFD8F")
298:                        .resolveHandle("sourcemodifier4994elemtype");
299:
300:                /**
301:                 * Gets the "type" attribute
302:                 */
303:                com.bostechcorp.cbesb.alert.x10.SourceModifierType.Enum getType();
304:
305:                /**
306:                 * Gets (as xml) the "type" attribute
307:                 */
308:                com.bostechcorp.cbesb.alert.x10.SourceModifierType xgetType();
309:
310:                /**
311:                 * True if has "type" attribute
312:                 */
313:                boolean isSetType();
314:
315:                /**
316:                 * Sets the "type" attribute
317:                 */
318:                void setType(
319:                        com.bostechcorp.cbesb.alert.x10.SourceModifierType.Enum type);
320:
321:                /**
322:                 * Sets (as xml) the "type" attribute
323:                 */
324:                void xsetType(
325:                        com.bostechcorp.cbesb.alert.x10.SourceModifierType type);
326:
327:                /**
328:                 * Unsets the "type" attribute
329:                 */
330:                void unsetType();
331:
332:                /**
333:                 * A factory class with static methods for creating instances
334:                 * of this type.
335:                 */
336:
337:                public static final class Factory {
338:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.SourceModifier newInstance() {
339:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.SourceModifier) org.apache.xmlbeans.XmlBeans
340:                                .getContextTypeLoader().newInstance(type, null);
341:                    }
342:
343:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.SourceModifier newInstance(
344:                            org.apache.xmlbeans.XmlOptions options) {
345:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.SourceModifier) org.apache.xmlbeans.XmlBeans
346:                                .getContextTypeLoader().newInstance(type,
347:                                        options);
348:                    }
349:
350:                    private Factory() {
351:                    } // No instance of this class allowed
352:                }
353:            }
354:
355:            /**
356:             * An XML comparsion(@http://cbesb.bostechcorp.com/alert/1.0).
357:             *
358:             * This is an atomic type that is a restriction of com.bostechcorp.cbesb.alert.x10.AlertEntryType$Comparsion.
359:             */
360:            public interface Comparsion extends org.apache.xmlbeans.XmlString {
361:                public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
362:                        .typeSystemForClassLoader(
363:                                Comparsion.class.getClassLoader(),
364:                                "schemaorg_apache_xmlbeans.system.sF259B946CC6DFC609F8E7F1ECC7FFD8F")
365:                        .resolveHandle("comparsion5eb7elemtype");
366:
367:                /**
368:                 * Gets the "operator" attribute
369:                 */
370:                java.lang.String getOperator();
371:
372:                /**
373:                 * Gets (as xml) the "operator" attribute
374:                 */
375:                org.apache.xmlbeans.XmlString xgetOperator();
376:
377:                /**
378:                 * True if has "operator" attribute
379:                 */
380:                boolean isSetOperator();
381:
382:                /**
383:                 * Sets the "operator" attribute
384:                 */
385:                void setOperator(java.lang.String operator);
386:
387:                /**
388:                 * Sets (as xml) the "operator" attribute
389:                 */
390:                void xsetOperator(org.apache.xmlbeans.XmlString operator);
391:
392:                /**
393:                 * Unsets the "operator" attribute
394:                 */
395:                void unsetOperator();
396:
397:                /**
398:                 * A factory class with static methods for creating instances
399:                 * of this type.
400:                 */
401:
402:                public static final class Factory {
403:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Comparsion newInstance() {
404:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Comparsion) org.apache.xmlbeans.XmlBeans
405:                                .getContextTypeLoader().newInstance(type, null);
406:                    }
407:
408:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Comparsion newInstance(
409:                            org.apache.xmlbeans.XmlOptions options) {
410:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Comparsion) org.apache.xmlbeans.XmlBeans
411:                                .getContextTypeLoader().newInstance(type,
412:                                        options);
413:                    }
414:
415:                    private Factory() {
416:                    } // No instance of this class allowed
417:                }
418:            }
419:
420:            /**
421:             * An XML duration(@http://cbesb.bostechcorp.com/alert/1.0).
422:             *
423:             * This is an atomic type that is a restriction of com.bostechcorp.cbesb.alert.x10.AlertEntryType$Duration.
424:             */
425:            public interface Duration extends org.apache.xmlbeans.XmlString {
426:                public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
427:                        .typeSystemForClassLoader(
428:                                Duration.class.getClassLoader(),
429:                                "schemaorg_apache_xmlbeans.system.sF259B946CC6DFC609F8E7F1ECC7FFD8F")
430:                        .resolveHandle("duration7716elemtype");
431:
432:                /**
433:                 * Gets the "type" attribute
434:                 */
435:                com.bostechcorp.cbesb.alert.x10.DurationType.Enum getType();
436:
437:                /**
438:                 * Gets (as xml) the "type" attribute
439:                 */
440:                com.bostechcorp.cbesb.alert.x10.DurationType xgetType();
441:
442:                /**
443:                 * True if has "type" attribute
444:                 */
445:                boolean isSetType();
446:
447:                /**
448:                 * Sets the "type" attribute
449:                 */
450:                void setType(
451:                        com.bostechcorp.cbesb.alert.x10.DurationType.Enum type);
452:
453:                /**
454:                 * Sets (as xml) the "type" attribute
455:                 */
456:                void xsetType(com.bostechcorp.cbesb.alert.x10.DurationType type);
457:
458:                /**
459:                 * Unsets the "type" attribute
460:                 */
461:                void unsetType();
462:
463:                /**
464:                 * A factory class with static methods for creating instances
465:                 * of this type.
466:                 */
467:
468:                public static final class Factory {
469:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Duration newInstance() {
470:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Duration) org.apache.xmlbeans.XmlBeans
471:                                .getContextTypeLoader().newInstance(type, null);
472:                    }
473:
474:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Duration newInstance(
475:                            org.apache.xmlbeans.XmlOptions options) {
476:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Duration) org.apache.xmlbeans.XmlBeans
477:                                .getContextTypeLoader().newInstance(type,
478:                                        options);
479:                    }
480:
481:                    private Factory() {
482:                    } // No instance of this class allowed
483:                }
484:            }
485:
486:            /**
487:             * An XML action(@http://cbesb.bostechcorp.com/alert/1.0).
488:             *
489:             * This is a complex type.
490:             */
491:            public interface Action extends org.apache.xmlbeans.XmlObject {
492:                public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
493:                        .typeSystemForClassLoader(
494:                                Action.class.getClassLoader(),
495:                                "schemaorg_apache_xmlbeans.system.sF259B946CC6DFC609F8E7F1ECC7FFD8F")
496:                        .resolveHandle("action9fb8elemtype");
497:
498:                /**
499:                 * Gets the "email" element
500:                 */
501:                com.bostechcorp.cbesb.alert.x10.EmailType getEmail();
502:
503:                /**
504:                 * True if has "email" element
505:                 */
506:                boolean isSetEmail();
507:
508:                /**
509:                 * Sets the "email" element
510:                 */
511:                void setEmail(com.bostechcorp.cbesb.alert.x10.EmailType email);
512:
513:                /**
514:                 * Appends and returns a new empty "email" element
515:                 */
516:                com.bostechcorp.cbesb.alert.x10.EmailType addNewEmail();
517:
518:                /**
519:                 * Unsets the "email" element
520:                 */
521:                void unsetEmail();
522:
523:                /**
524:                 * Gets the "jms" element
525:                 */
526:                com.bostechcorp.cbesb.alert.x10.JmsType getJms();
527:
528:                /**
529:                 * True if has "jms" element
530:                 */
531:                boolean isSetJms();
532:
533:                /**
534:                 * Sets the "jms" element
535:                 */
536:                void setJms(com.bostechcorp.cbesb.alert.x10.JmsType jms);
537:
538:                /**
539:                 * Appends and returns a new empty "jms" element
540:                 */
541:                com.bostechcorp.cbesb.alert.x10.JmsType addNewJms();
542:
543:                /**
544:                 * Unsets the "jms" element
545:                 */
546:                void unsetJms();
547:
548:                /**
549:                 * Gets the "exec" element
550:                 */
551:                com.bostechcorp.cbesb.alert.x10.ExecType getExec();
552:
553:                /**
554:                 * True if has "exec" element
555:                 */
556:                boolean isSetExec();
557:
558:                /**
559:                 * Sets the "exec" element
560:                 */
561:                void setExec(com.bostechcorp.cbesb.alert.x10.ExecType exec);
562:
563:                /**
564:                 * Appends and returns a new empty "exec" element
565:                 */
566:                com.bostechcorp.cbesb.alert.x10.ExecType addNewExec();
567:
568:                /**
569:                 * Unsets the "exec" element
570:                 */
571:                void unsetExec();
572:
573:                /**
574:                 * Gets the "type" attribute
575:                 */
576:                com.bostechcorp.cbesb.alert.x10.ActionType.Enum getType();
577:
578:                /**
579:                 * Gets (as xml) the "type" attribute
580:                 */
581:                com.bostechcorp.cbesb.alert.x10.ActionType xgetType();
582:
583:                /**
584:                 * True if has "type" attribute
585:                 */
586:                boolean isSetType();
587:
588:                /**
589:                 * Sets the "type" attribute
590:                 */
591:                void setType(
592:                        com.bostechcorp.cbesb.alert.x10.ActionType.Enum type);
593:
594:                /**
595:                 * Sets (as xml) the "type" attribute
596:                 */
597:                void xsetType(com.bostechcorp.cbesb.alert.x10.ActionType type);
598:
599:                /**
600:                 * Unsets the "type" attribute
601:                 */
602:                void unsetType();
603:
604:                /**
605:                 * A factory class with static methods for creating instances
606:                 * of this type.
607:                 */
608:
609:                public static final class Factory {
610:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Action newInstance() {
611:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Action) org.apache.xmlbeans.XmlBeans
612:                                .getContextTypeLoader().newInstance(type, null);
613:                    }
614:
615:                    public static com.bostechcorp.cbesb.alert.x10.AlertEntryType.Action newInstance(
616:                            org.apache.xmlbeans.XmlOptions options) {
617:                        return (com.bostechcorp.cbesb.alert.x10.AlertEntryType.Action) org.apache.xmlbeans.XmlBeans
618:                                .getContextTypeLoader().newInstance(type,
619:                                        options);
620:                    }
621:
622:                    private Factory() {
623:                    } // No instance of this class allowed
624:                }
625:            }
626:
627:            /**
628:             * A factory class with static methods for creating instances
629:             * of this type.
630:             */
631:
632:            public static final class Factory {
633:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType newInstance() {
634:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
635:                            .getContextTypeLoader().newInstance(type, null);
636:                }
637:
638:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType newInstance(
639:                        org.apache.xmlbeans.XmlOptions options) {
640:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
641:                            .getContextTypeLoader().newInstance(type, options);
642:                }
643:
644:                /** @param xmlAsString the string value to parse */
645:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
646:                        java.lang.String xmlAsString)
647:                        throws org.apache.xmlbeans.XmlException {
648:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
649:                            .getContextTypeLoader().parse(xmlAsString, type,
650:                                    null);
651:                }
652:
653:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
654:                        java.lang.String xmlAsString,
655:                        org.apache.xmlbeans.XmlOptions options)
656:                        throws org.apache.xmlbeans.XmlException {
657:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
658:                            .getContextTypeLoader().parse(xmlAsString, type,
659:                                    options);
660:                }
661:
662:                /** @param file the file from which to load an xml document */
663:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
664:                        java.io.File file)
665:                        throws org.apache.xmlbeans.XmlException,
666:                        java.io.IOException {
667:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
668:                            .getContextTypeLoader().parse(file, type, null);
669:                }
670:
671:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
672:                        java.io.File file,
673:                        org.apache.xmlbeans.XmlOptions options)
674:                        throws org.apache.xmlbeans.XmlException,
675:                        java.io.IOException {
676:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
677:                            .getContextTypeLoader().parse(file, type, options);
678:                }
679:
680:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
681:                        java.net.URL u)
682:                        throws org.apache.xmlbeans.XmlException,
683:                        java.io.IOException {
684:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
685:                            .getContextTypeLoader().parse(u, type, null);
686:                }
687:
688:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
689:                        java.net.URL u, org.apache.xmlbeans.XmlOptions options)
690:                        throws org.apache.xmlbeans.XmlException,
691:                        java.io.IOException {
692:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
693:                            .getContextTypeLoader().parse(u, type, options);
694:                }
695:
696:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
697:                        java.io.InputStream is)
698:                        throws org.apache.xmlbeans.XmlException,
699:                        java.io.IOException {
700:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
701:                            .getContextTypeLoader().parse(is, type, null);
702:                }
703:
704:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
705:                        java.io.InputStream is,
706:                        org.apache.xmlbeans.XmlOptions options)
707:                        throws org.apache.xmlbeans.XmlException,
708:                        java.io.IOException {
709:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
710:                            .getContextTypeLoader().parse(is, type, options);
711:                }
712:
713:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
714:                        java.io.Reader r)
715:                        throws org.apache.xmlbeans.XmlException,
716:                        java.io.IOException {
717:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
718:                            .getContextTypeLoader().parse(r, type, null);
719:                }
720:
721:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
722:                        java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
723:                        throws org.apache.xmlbeans.XmlException,
724:                        java.io.IOException {
725:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
726:                            .getContextTypeLoader().parse(r, type, options);
727:                }
728:
729:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
730:                        javax.xml.stream.XMLStreamReader sr)
731:                        throws org.apache.xmlbeans.XmlException {
732:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
733:                            .getContextTypeLoader().parse(sr, type, null);
734:                }
735:
736:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
737:                        javax.xml.stream.XMLStreamReader sr,
738:                        org.apache.xmlbeans.XmlOptions options)
739:                        throws org.apache.xmlbeans.XmlException {
740:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
741:                            .getContextTypeLoader().parse(sr, type, options);
742:                }
743:
744:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
745:                        org.w3c.dom.Node node)
746:                        throws org.apache.xmlbeans.XmlException {
747:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
748:                            .getContextTypeLoader().parse(node, type, null);
749:                }
750:
751:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
752:                        org.w3c.dom.Node node,
753:                        org.apache.xmlbeans.XmlOptions options)
754:                        throws org.apache.xmlbeans.XmlException {
755:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
756:                            .getContextTypeLoader().parse(node, type, options);
757:                }
758:
759:                /** @deprecated {@link XMLInputStream} */
760:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
761:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
762:                        throws org.apache.xmlbeans.XmlException,
763:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
764:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
765:                            .getContextTypeLoader().parse(xis, type, null);
766:                }
767:
768:                /** @deprecated {@link XMLInputStream} */
769:                public static com.bostechcorp.cbesb.alert.x10.AlertEntryType parse(
770:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
771:                        org.apache.xmlbeans.XmlOptions options)
772:                        throws org.apache.xmlbeans.XmlException,
773:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
774:                    return (com.bostechcorp.cbesb.alert.x10.AlertEntryType) org.apache.xmlbeans.XmlBeans
775:                            .getContextTypeLoader().parse(xis, type, options);
776:                }
777:
778:                /** @deprecated {@link XMLInputStream} */
779:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
780:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
781:                        throws org.apache.xmlbeans.XmlException,
782:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
783:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
784:                            .newValidatingXMLInputStream(xis, type, null);
785:                }
786:
787:                /** @deprecated {@link XMLInputStream} */
788:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
789:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
790:                        org.apache.xmlbeans.XmlOptions options)
791:                        throws org.apache.xmlbeans.XmlException,
792:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
793:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
794:                            .newValidatingXMLInputStream(xis, type, options);
795:                }
796:
797:                private Factory() {
798:                } // No instance of this class allowed
799:            }
800:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.