Source Code Cross Referenced for HTMLParserConstants.java in  » Wiki-Engine » VeryQuickWiki » vqwiki » utils » lucene » 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 » Wiki Engine » VeryQuickWiki » vqwiki.utils.lucene 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* Generated By:JavaCC: Do not edit this line. HTMLParserConstants.java */
002:        // package com.tchibo.misc.lucene;
003:        package vqwiki.utils.lucene;
004:
005:        /**
006:         * TODO: Document this interface.
007:         *
008:         * @version $Id: HTMLParserConstants.java 234 2003-04-15 23:11:06Z garethc $
009:         */
010:        public interface HTMLParserConstants {
011:
012:            /**
013:             * TODO: Document this field.
014:             */
015:            int EOF = 0;
016:            /**
017:             * TODO: Document this field.
018:             */
019:            int TagName = 1;
020:            /**
021:             * TODO: Document this field.
022:             */
023:            int DeclName = 2;
024:            /**
025:             * TODO: Document this field.
026:             */
027:            int Comment1 = 3;
028:            /**
029:             * TODO: Document this field.
030:             */
031:            int Comment2 = 4;
032:            /**
033:             * TODO: Document this field.
034:             */
035:            int Word = 5;
036:            /**
037:             * TODO: Document this field.
038:             */
039:            int LET = 6;
040:            /**
041:             * TODO: Document this field.
042:             */
043:            int NUM = 7;
044:            /**
045:             * TODO: Document this field.
046:             */
047:            int Entity = 8;
048:            /**
049:             * TODO: Document this field.
050:             */
051:            int Space = 9;
052:            /**
053:             * TODO: Document this field.
054:             */
055:            int SP = 10;
056:            /**
057:             * TODO: Document this field.
058:             */
059:            int Punct = 11;
060:            /**
061:             * TODO: Document this field.
062:             */
063:            int ArgName = 12;
064:            /**
065:             * TODO: Document this field.
066:             */
067:            int ArgEquals = 13;
068:            /**
069:             * TODO: Document this field.
070:             */
071:            int TagEnd = 14;
072:            /**
073:             * TODO: Document this field.
074:             */
075:            int ArgValue = 15;
076:            /**
077:             * TODO: Document this field.
078:             */
079:            int ArgQuote1 = 16;
080:            /**
081:             * TODO: Document this field.
082:             */
083:            int ArgQuote2 = 17;
084:            /**
085:             * TODO: Document this field.
086:             */
087:            int Quote1Text = 19;
088:            /**
089:             * TODO: Document this field.
090:             */
091:            int CloseQuote1 = 20;
092:            /**
093:             * TODO: Document this field.
094:             */
095:            int Quote2Text = 21;
096:            /**
097:             * TODO: Document this field.
098:             */
099:            int CloseQuote2 = 22;
100:            /**
101:             * TODO: Document this field.
102:             */
103:            int CommentText1 = 23;
104:            /**
105:             * TODO: Document this field.
106:             */
107:            int CommentEnd1 = 24;
108:            /**
109:             * TODO: Document this field.
110:             */
111:            int CommentText2 = 25;
112:            /**
113:             * TODO: Document this field.
114:             */
115:            int CommentEnd2 = 26;
116:
117:            /**
118:             * TODO: Document this field.
119:             */
120:            int DEFAULT = 0;
121:            /**
122:             * TODO: Document this field.
123:             */
124:            int WithinTag = 1;
125:            /**
126:             * TODO: Document this field.
127:             */
128:            int AfterEquals = 2;
129:            /**
130:             * TODO: Document this field.
131:             */
132:            int WithinQuote1 = 3;
133:            /**
134:             * TODO: Document this field.
135:             */
136:            int WithinQuote2 = 4;
137:            /**
138:             * TODO: Document this field.
139:             */
140:            int WithinComment1 = 5;
141:            /**
142:             * TODO: Document this field.
143:             */
144:            int WithinComment2 = 6;
145:
146:            /**
147:             * TODO: Document this field.
148:             */
149:            String[] tokenImage = { "<EOF>", "<TagName>", "<DeclName>",
150:                    "\"<!--\"", "\"<!\"", "<Word>", "<LET>", "<NUM>",
151:                    "<Entity>", "<Space>", "<SP>", "<Punct>", "<ArgName>",
152:                    "\"=\"", "<TagEnd>", "<ArgValue>", "\"\\\'\"", "\"\\\"\"",
153:                    "<token of kind 18>", "<Quote1Text>", "<CloseQuote1>",
154:                    "<Quote2Text>", "<CloseQuote2>", "<CommentText1>",
155:                    "\"-->\"", "<CommentText2>", "\">\"", };
156:
157:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.