Source Code Cross Referenced for Application.java in  » Parser » XP-Parser » com » jclark » xml » parse » base » 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 » Parser » XP Parser » com.jclark.xml.parse.base 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.jclark.xml.parse.base;
002:
003:        import com.jclark.xml.parse.*;
004:
005:        /**
006:         * This interface is used by the parser to report information to the
007:         * application.
008:         * In all cases the event argument is valid only until the function
009:         * returns;
010:         * the parser may reuse the event object to report subsequent events.
011:         *
012:         * @see Parser
013:         * @version $Revision: 1.2 $ $Date: 1998/06/10 09:43:55 $
014:         */
015:        public interface Application {
016:            /**
017:             * Reports the start of the document.
018:             * This is called once per well-formed document before any other methods.
019:             */
020:            void startDocument() throws Exception;
021:
022:            /**
023:             * Reports the end of the prolog.
024:             * Called before the start of the first element.
025:             */
026:            void endProlog(EndPrologEvent event) throws Exception;
027:
028:            /**
029:             * Reports the start of an element.
030:             * This includes both start-tags and empty elements.
031:             */
032:            void startElement(StartElementEvent event) throws Exception;
033:
034:            /**
035:             * Reports character data.
036:             */
037:            void characterData(CharacterDataEvent event) throws Exception;
038:
039:            /**
040:             * Reports the end of a element.
041:             * This includes both end-tags and empty elements.
042:             */
043:            void endElement(EndElementEvent event) throws Exception;
044:
045:            /**
046:             * Reports a processing instruction.
047:             * Note that processing instructions can occur before or after the
048:             * document element.
049:             */
050:            void processingInstruction(ProcessingInstructionEvent event)
051:                    throws Exception;
052:
053:            /**
054:             * Reports the end of the document.
055:             * Called once per well-formed document, after all other methods.
056:             * Not called if the document is not well-formed.
057:             */
058:            void endDocument() throws Exception;
059:
060:            /**
061:             * Reports a comment.
062:             * Note that comments can occur before or after the
063:             * document element.
064:             */
065:            void comment(CommentEvent event) throws Exception;
066:
067:            /**
068:             * Reports the start of a CDATA section.
069:             */
070:            void startCdataSection(StartCdataSectionEvent event)
071:                    throws Exception;
072:
073:            /**
074:             * Reports the end of a CDATA section.
075:             */
076:            void endCdataSection(EndCdataSectionEvent event) throws Exception;
077:
078:            /**
079:             * Reports the start of an entity reference.
080:             * This event will be followed by the result of parsing
081:             * the entity's replacement text.
082:             * This is not called for entity references in attribute values.
083:             */
084:            void startEntityReference(StartEntityReferenceEvent event)
085:                    throws Exception;
086:
087:            /**
088:             * Reports the start of an entity reference.
089:             * This event follow's the result of parsing
090:             * the entity's replacement text.
091:             * This is not called for entity references in attribute values.
092:             */
093:            void endEntityReference(EndEntityReferenceEvent event)
094:                    throws Exception;
095:
096:            /**
097:             * Reports the start of the document type declaration.
098:             */
099:            void startDocumentTypeDeclaration(
100:                    StartDocumentTypeDeclarationEvent event) throws Exception;
101:
102:            /**
103:             * Reports the end of the document type declaration.
104:             */
105:            void endDocumentTypeDeclaration(
106:                    EndDocumentTypeDeclarationEvent event) throws Exception;
107:
108:            /**
109:             * Reports a markup declaration.
110:             */
111:            void markupDeclaration(MarkupDeclarationEvent event)
112:                    throws Exception;
113:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.