Source Code Cross Referenced for ValidationEventCollector.java in  » 6.0-JDK-Modules » jaxb-api » javax » xml » bind » util » 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 » 6.0 JDK Modules » jaxb api » javax.xml.bind.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
03:         * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
04:         */
05:        package javax.xml.bind.util;
06:
07:        import javax.xml.bind.ValidationEvent;
08:        import javax.xml.bind.ValidationEventHandler;
09:        import java.util.ArrayList;
10:        import java.util.List;
11:
12:        /**
13:         * {@link javax.xml.bind.ValidationEventHandler ValidationEventHandler} 
14:         * implementation that collects all events.
15:         * 
16:         * <p>
17:         * To use this class, create a new instance and pass it to the setEventHandler
18:         * method of the Validator, Unmarshaller, Marshaller class.  After the call to 
19:         * validate or unmarshal completes, call the getEvents method to retrieve all 
20:         * the reported errors and warnings.
21:         *
22:         * @author <ul><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Ryan Shoemaker, Sun Microsystems, Inc.</li><li>Joe Fialli, Sun Microsystems, Inc.</li></ul> 
23:         * @version $Revision: 1.3 $
24:         * @see javax.xml.bind.Validator
25:         * @see javax.xml.bind.ValidationEventHandler
26:         * @see javax.xml.bind.ValidationEvent
27:         * @see javax.xml.bind.ValidationEventLocator
28:         * @since JAXB1.0
29:         */
30:        public class ValidationEventCollector implements  ValidationEventHandler {
31:            private final List<ValidationEvent> events = new ArrayList<ValidationEvent>();
32:
33:            /**
34:             * Return an array of ValidationEvent objects containing a copy of each of 
35:             * the collected errors and warnings.
36:             * 
37:             * @return
38:             *      a copy of all the collected errors and warnings or an empty array
39:             *      if there weren't any
40:             */
41:            public ValidationEvent[] getEvents() {
42:                return events.toArray(new ValidationEvent[events.size()]);
43:            }
44:
45:            /**
46:             * Clear all collected errors and warnings.
47:             */
48:            public void reset() {
49:                events.clear();
50:            }
51:
52:            /**
53:             * Returns true if this event collector contains at least one 
54:             * ValidationEvent.
55:             *
56:             * @return true if this event collector contains at least one 
57:             *         ValidationEvent, false otherwise
58:             */
59:            public boolean hasEvents() {
60:                return !events.isEmpty();
61:            }
62:
63:            public boolean handleEvent(ValidationEvent event) {
64:                events.add(event);
65:
66:                boolean retVal = true;
67:                switch (event.getSeverity()) {
68:                case ValidationEvent.WARNING:
69:                    retVal = true; // continue validation
70:                    break;
71:                case ValidationEvent.ERROR:
72:                    retVal = true; // continue validation
73:                    break;
74:                case ValidationEvent.FATAL_ERROR:
75:                    retVal = false; // halt validation
76:                    break;
77:                default:
78:                    _assert(false, Messages
79:                            .format(Messages.UNRECOGNIZED_SEVERITY, event
80:                                    .getSeverity()));
81:                    break;
82:                }
83:
84:                return retVal;
85:            }
86:
87:            private static void _assert(boolean b, String msg) {
88:                if (!b) {
89:                    throw new InternalError(msg);
90:                }
91:            }
92:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.