Java Doc for Parser.java in  » Web-Server » jo » com » tagtraum » framework » markup » 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 » Web Server » jo » com.tagtraum.framework.markup 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.tagtraum.framework.markup.Parser

All known Subclasses:   com.tagtraum.jo.jsp.InternalJspParser,
Parser
public class Parser (Code)
This class is capable of reading textual data and recognizing certain parts of that text beginning with a 'magic' character. The default character used is '<'. All parts of the text are returned as I_Element s. The class allows to register certain element classes for tag starts.

Not recognized parts are returned as an instance of the default element class.
author:
   Hendrik Schreiber
version:
   1.1beta1 $Id: Parser.java,v 1.9 2005/07/06 18:31:00 hendriks73 Exp $



Field Summary
protected  ConstructormyDefaultElementConstructor
    
protected  HashMapmyElementMap
    
protected  Constructor[]myElements
    
protected  intmyLongestTagStartLength
    
protected  intmyMagicChar
    
protected  ReadermyRawReader
    
protected  PushbackReadermyReader
     Internal Reader.
protected  String[]myTagStarts
    
protected  URLmyURL
    
public static  Stringvcid
    

Constructor Summary
public  Parser(Reader aReader)
     Create a new Parser.
public  Parser(URL aURL)
     Creates a new Parser.
public  Parser(URL aURL, String anEncoding)
     Creates a new Parser.

Method Summary
public  voidaddElementClass(Class anElementClass, String aTagStart)
     Registers an Element class.
public  voidclose()
     Closes the underlying reader.
protected  I_ElementgetDefaultElement()
     Returns a new instance of the default element.
public  ConstructorgetDefaultElementConstructor()
     Returns the default element Constructor.
protected  I_ElementgetElement()
     Read first characters and return the appropiate I_Element .
public  ConstructorgetElementConstructor(String aTagStart)
     Returns an Element class.
public  chargetMagicChar()
     Returns the 'magic' character.
protected  StringgetTagStart(Class aClass)
     Returns the value of the method getTagStart() of an element class.
public  URLgetURL()
     Returns the URL this parser is parsing.
public static  voidmain(String[] args)
     Tests.
public  I_ElementnextElement()
     Returns the next I_Element .
public  voidremoveElementClass(String aTagStart)
     Un-Registers an Element class.
protected  voidreorderTagStarts()
     Order TagStarts and ElementClasses to get the longest match first.
public  voidsetDefaultElementClass(Constructor aDefaultElementConstructor)
     Sets the default element Constructor.
public  voidsetMagicChar(char aMagicChar)
     Sets the 'magic' character.
public  voidsetURL(URL aURL)
     Associates this parser with an URL.

Field Detail
myDefaultElementConstructor
protected Constructor myDefaultElementConstructor(Code)



myElementMap
protected HashMap myElementMap(Code)



myElements
protected Constructor[] myElements(Code)



myLongestTagStartLength
protected int myLongestTagStartLength(Code)



myMagicChar
protected int myMagicChar(Code)



myRawReader
protected Reader myRawReader(Code)



myReader
protected PushbackReader myReader(Code)
Internal Reader.



myTagStarts
protected String[] myTagStarts(Code)



myURL
protected URL myURL(Code)



vcid
public static String vcid(Code)
Source-Version




Constructor Detail
Parser
public Parser(Reader aReader)(Code)
Create a new Parser.
Parameters:
  aReader - a Reader that supports mark



Parser
public Parser(URL aURL) throws IOException(Code)
Creates a new Parser.
Parameters:
  aURL - the URL is opened and the resulting InputStream iswrapped with an InputputStreamReader using the default encoding



Parser
public Parser(URL aURL, String anEncoding) throws IOException(Code)
Creates a new Parser.
Parameters:
  aURL - the URL is opened and the resulting InputStream iswrapped with an InputputStreamReader using the specified encoding
Parameters:
  anEncoding - the way data is encoded




Method Detail
addElementClass
public void addElementClass(Class anElementClass, String aTagStart) throws ParserException, NoSuchMethodException(Code)
Registers an Element class.
Parameters:
  anElementClass - an Element class
throws:
  ParserException - if the class does not have a method called "getTagStart"



close
public void close() throws IOException(Code)
Closes the underlying reader.



getDefaultElement
protected I_Element getDefaultElement() throws IOException(Code)
Returns a new instance of the default element. It usually repersents raw data. an I_Element
See Also:   RawDataElement



getDefaultElementConstructor
public Constructor getDefaultElementConstructor()(Code)
Returns the default element Constructor. The default value for this is RawDataElement . the default element Constructor
See Also:   Parser.setDefaultElementClass



getElement
protected I_Element getElement() throws IOException(Code)
Read first characters and return the appropiate I_Element . an Element or null if EOF



getElementConstructor
public Constructor getElementConstructor(String aTagStart)(Code)
Returns an Element class.
Parameters:
  aTagStart - String the class is registered under
See Also:   Tag.getTagStart



getMagicChar
public char getMagicChar()(Code)
Returns the 'magic' character. the 'magic' character



getTagStart
protected String getTagStart(Class aClass) throws ParserException(Code)
Returns the value of the method getTagStart() of an element class.



getURL
public URL getURL()(Code)
Returns the URL this parser is parsing. Note that this must have been set explicitly using Parser.setURL unless you used the appropriate constructor. the URL this Parser is parsing.



main
public static void main(String[] args) throws Exception(Code)
Tests.



nextElement
public I_Element nextElement() throws IOException(Code)
Returns the next I_Element . return the next element or null if EOF is reached



removeElementClass
public void removeElementClass(String aTagStart) throws ParserException(Code)
Un-Registers an Element class.
throws:
  ParserException - if the class does not have a method called "getTagStart"



reorderTagStarts
protected void reorderTagStarts()(Code)
Order TagStarts and ElementClasses to get the longest match first.



setDefaultElementClass
public void setDefaultElementClass(Constructor aDefaultElementConstructor)(Code)
Sets the default element Constructor. The default value for this is RawDataElement .
Parameters:
  aDefaultElementConstructor - the default element Constructor
See Also:   Parser.getDefaultElementConstructor()



setMagicChar
public void setMagicChar(char aMagicChar)(Code)
Sets the 'magic' character.
Parameters:
  aMagicChar - the stop character



setURL
public void setURL(URL aURL)(Code)
Associates this parser with an URL.
Parameters:
  aURL - the URL this Parser is parsing.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.