Java Doc for XMLWriter.java in  » Net » openfire » org » jivesoftware » 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 » Net » openfire » org.jivesoftware.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.xml.sax.helpers.XMLFilterImpl
      org.jivesoftware.util.XMLWriter

All known Subclasses:   org.jivesoftware.openfire.net.XMLSocketWriter,
XMLWriter
public class XMLWriter extends XMLFilterImpl implements LexicalHandler(Code)
Replacement class of the original XMLWriter.java (version: 1.77) since the original is still using StringBuffer which is not fast.


Field Summary
final protected static  OutputFormatDEFAULT_FORMAT
    
final protected static  String[]LEXICAL_HANDLER_NAMES
    
protected  intlastOutputNodeType
    
protected  booleanpreserve
    
protected  Writerwriter
    

Constructor Summary
public  XMLWriter(Writer writer)
    
public  XMLWriter(Writer writer, OutputFormat format)
    
public  XMLWriter()
    
public  XMLWriter(OutputStream out)
    
public  XMLWriter(OutputStream out, OutputFormat format)
    
public  XMLWriter(OutputFormat format)
    

Method Summary
public  voidcharacters(char[] ch, int start, int length)
    
public  voidclose()
    
public  voidcomment(char[] ch, int start, int length)
    
protected  WritercreateWriter(OutputStream outStream, String encoding)
     Get an OutputStreamWriter, use preferred encoding.
protected  intdefaultMaximumAllowedCharacter()
     Returns the maximum allowed character code that should be allowed unescaped which defaults to 127 in US-ASCII (7 bit) or 255 in ISO-* (8 bit).
public  voidendCDATA()
    
public  voidendDTD()
    
public  voidendDocument()
    
public  voidendElement(String namespaceURI, String localName, String qName)
    
public  voidendEntity(String name)
    
public  voidendPrefixMapping(String prefix)
    
protected  StringescapeAttributeEntities(String text)
     This will take the pre-defined entities in XML 1.0 and convert their character representation to the appropriate entity reference, suitable for XML attributes.
protected  StringescapeElementEntities(String text)
     This will take the pre-defined entities in XML 1.0 and convert their character representation to the appropriate entity reference, suitable for XML attributes.
public  voidflush()
    
public  LexicalHandlergetLexicalHandler()
    
public  intgetMaximumAllowedCharacter()
     Returns the maximum allowed character code that should be allowed unescaped which defaults to 127 in US-ASCII (7 bit) or 255 in ISO-* (8 bit).
protected  OutputFormatgetOutputFormat()
     Lets subclasses get at the current format object, so they can call setTrimText, setNewLines, etc.
public  ObjectgetProperty(String name)
    
protected  voidhandleException(IOException e)
    
public  voidignorableWhitespace(char[] ch, int start, int length)
    
protected  voidindent()
    
protected  voidinstallLexicalHandler()
    
final protected  booleanisElementSpacePreserved(Element element)
     Determines if element is a special case of XML elements where it contains an xml:space attribute of "preserve".
public  booleanisEscapeText()
     true if text thats output should be escaped.This is enabled by default.
protected  booleanisExpandEmptyElements()
    
protected  booleanisNamespaceDeclaration(Namespace ns)
    
public  voidnotationDecl(String name, String publicID, String systemID)
    
public  voidparse(InputSource source)
    
public  voidprintln()
    
public  voidprocessingInstruction(String target, String data)
    
public  booleanresolveEntityRefs()
    
public  voidsetDocumentLocator(Locator locator)
    
public  voidsetEscapeText(boolean escapeText)
     Sets whether text output should be escaped or not. This is enabled by default.
public  voidsetIndentLevel(int indentLevel)
     Set the initial indentation level.
public  voidsetLexicalHandler(LexicalHandler handler)
    
public  voidsetMaximumAllowedCharacter(int maximumAllowedCharacter)
     Sets the maximum allowed character code that should be allowed unescaped such as 127 in US-ASCII (7 bit) or 255 in ISO-* (8 bit) or -1 to not escape any characters (other than the special XML characters like < > &) If this is not explicitly set then it is defaulted from the encoding.
public  voidsetOutputStream(OutputStream out)
    
public  voidsetProperty(String name, Object value)
    
public  voidsetResolveEntityRefs(boolean resolve)
    
public  voidsetWriter(Writer writer)
    
protected  booleanshouldEncodeChar(char c)
     Should the given character be escaped.
public  voidstartCDATA()
    
public  voidstartDTD(String name, String publicID, String systemID)
    
public  voidstartDocument()
    
public  voidstartElement(String namespaceURI, String localName, String qName, Attributes attributes)
    
public  voidstartEntity(String name)
    
public  voidstartPrefixMapping(String prefix, String uri)
    
public  voidunparsedEntityDecl(String name, String publicID, String systemID, String notationName)
    
public  voidwrite(Attribute attribute)
     Writes the given org.dom4j.Attribute .
public  voidwrite(Document doc)
    

This will print the Document to the current Writer.

Warning: using your own Writer may cause the writer's preferred character encoding to be ignored.

public  voidwrite(Element element)
    
public  voidwrite(CDATA cdata)
     Writes the given CDATA .
public  voidwrite(Comment comment)
     Writes the given Comment .
public  voidwrite(DocumentType docType)
     Writes the given DocumentType .
public  voidwrite(Entity entity)
     Writes the given Entity .
public  voidwrite(Namespace namespace)
     Writes the given Namespace .
public  voidwrite(ProcessingInstruction processingInstruction)
     Writes the given ProcessingInstruction .
public  voidwrite(String text)
    
public  voidwrite(Text text)
     Writes the given Text .
public  voidwrite(Node node)
     Writes the given Node .
public  voidwrite(Object object)
     Writes the given object which should be a String, a Node or a List of Nodes.
protected  voidwriteAttribute(Attribute attribute)
    
protected  voidwriteAttribute(Attributes attributes, int index)
    
protected  voidwriteAttributes(Element element)
    
protected  voidwriteAttributes(Attributes attributes)
    
protected  voidwriteCDATA(String text)
    
public  voidwriteClose(Element element)
    
protected  voidwriteClose(String qualifiedName)
    
protected  voidwriteComment(String text)
    
protected  voidwriteDeclaration()
    

This will write the declaration to the given Writer.

protected  voidwriteDocType(DocumentType docType)
    
protected  voidwriteDocType(String name, String publicID, String systemID)
    
protected  voidwriteElement(Element element)
    
protected  voidwriteElementContent(Element element)
     Outputs the content of the given element.
protected  voidwriteEmptyElementClose(String qualifiedName)
    
protected  voidwriteEntity(Entity entity)
    
protected  voidwriteEntityRef(String name)
    
protected  voidwriteEscapeAttributeEntities(String text)
    
protected  voidwriteNamespace(Namespace namespace)
    
protected  voidwriteNamespace(String prefix, String uri)
    
protected  voidwriteNamespaces()
    
protected  voidwriteNode(Node node)
    
protected  voidwriteNodeText(Node node)
     This method is used to write out Nodes that contain text and still allow for xml:space to be handled properly.
public  voidwriteOpen(Element element)
    
protected  voidwritePrintln()
    
protected  voidwriteProcessingInstruction(ProcessingInstruction processingInstruction)
    
protected  voidwriteString(String text)
    

Field Detail
DEFAULT_FORMAT
final protected static OutputFormat DEFAULT_FORMAT(Code)



LEXICAL_HANDLER_NAMES
final protected static String[] LEXICAL_HANDLER_NAMES(Code)



lastOutputNodeType
protected int lastOutputNodeType(Code)
Stores the last type of node written so algorithms can refer to the previous node type



preserve
protected boolean preserve(Code)
Stores the xml:space attribute value of preserve for whitespace flag



writer
protected Writer writer(Code)
The Writer used to output to




Constructor Detail
XMLWriter
public XMLWriter(Writer writer)(Code)



XMLWriter
public XMLWriter(Writer writer, OutputFormat format)(Code)



XMLWriter
public XMLWriter() throws UnsupportedEncodingException(Code)



XMLWriter
public XMLWriter(OutputStream out) throws UnsupportedEncodingException(Code)



XMLWriter
public XMLWriter(OutputStream out, OutputFormat format) throws UnsupportedEncodingException(Code)



XMLWriter
public XMLWriter(OutputFormat format) throws UnsupportedEncodingException(Code)




Method Detail
characters
public void characters(char[] ch, int start, int length) throws SAXException(Code)



close
public void close() throws IOException(Code)
Closes the underlying Writer



comment
public void comment(char[] ch, int start, int length) throws SAXException(Code)



createWriter
protected Writer createWriter(OutputStream outStream, String encoding) throws UnsupportedEncodingException(Code)
Get an OutputStreamWriter, use preferred encoding.



defaultMaximumAllowedCharacter
protected int defaultMaximumAllowedCharacter()(Code)
Returns the maximum allowed character code that should be allowed unescaped which defaults to 127 in US-ASCII (7 bit) or 255 in ISO-* (8 bit).



endCDATA
public void endCDATA() throws SAXException(Code)



endDTD
public void endDTD() throws SAXException(Code)



endDocument
public void endDocument() throws SAXException(Code)



endElement
public void endElement(String namespaceURI, String localName, String qName) throws SAXException(Code)



endEntity
public void endEntity(String name) throws SAXException(Code)



endPrefixMapping
public void endPrefixMapping(String prefix) throws SAXException(Code)



escapeAttributeEntities
protected String escapeAttributeEntities(String text)(Code)
This will take the pre-defined entities in XML 1.0 and convert their character representation to the appropriate entity reference, suitable for XML attributes.



escapeElementEntities
protected String escapeElementEntities(String text)(Code)
This will take the pre-defined entities in XML 1.0 and convert their character representation to the appropriate entity reference, suitable for XML attributes.



flush
public void flush() throws IOException(Code)
Flushes the underlying Writer



getLexicalHandler
public LexicalHandler getLexicalHandler()(Code)



getMaximumAllowedCharacter
public int getMaximumAllowedCharacter()(Code)
Returns the maximum allowed character code that should be allowed unescaped which defaults to 127 in US-ASCII (7 bit) or 255 in ISO-* (8 bit).



getOutputFormat
protected OutputFormat getOutputFormat()(Code)
Lets subclasses get at the current format object, so they can call setTrimText, setNewLines, etc. Put in to support the HTMLWriter, in the way that it pushes the current newline/trim state onto a stack and overrides the state within preformatted tags.



getProperty
public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException(Code)



handleException
protected void handleException(IOException e) throws SAXException(Code)



ignorableWhitespace
public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException(Code)



indent
protected void indent() throws IOException(Code)



installLexicalHandler
protected void installLexicalHandler()(Code)



isElementSpacePreserved
final protected boolean isElementSpacePreserved(Element element)(Code)
Determines if element is a special case of XML elements where it contains an xml:space attribute of "preserve". If it does, then retain whitespace.



isEscapeText
public boolean isEscapeText()(Code)
true if text thats output should be escaped.This is enabled by default. It could be disabled ifthe output format is textual, like in XSLT where we can havexml, html or text output.



isExpandEmptyElements
protected boolean isExpandEmptyElements()(Code)



isNamespaceDeclaration
protected boolean isNamespaceDeclaration(Namespace ns)(Code)



notationDecl
public void notationDecl(String name, String publicID, String systemID) throws SAXException(Code)



parse
public void parse(InputSource source) throws IOException, SAXException(Code)



println
public void println() throws IOException(Code)
Writes the new line text to the underlying Writer



processingInstruction
public void processingInstruction(String target, String data) throws SAXException(Code)



resolveEntityRefs
public boolean resolveEntityRefs()(Code)



setDocumentLocator
public void setDocumentLocator(Locator locator)(Code)



setEscapeText
public void setEscapeText(boolean escapeText)(Code)
Sets whether text output should be escaped or not. This is enabled by default. It could be disabled if the output format is textual, like in XSLT where we can have xml, html or text output.



setIndentLevel
public void setIndentLevel(int indentLevel)(Code)
Set the initial indentation level. This can be used to output a document (or, more likely, an element) starting at a given indent level, so it's not always flush against the left margin. Default: 0
Parameters:
  indentLevel - the number of indents to start with



setLexicalHandler
public void setLexicalHandler(LexicalHandler handler)(Code)



setMaximumAllowedCharacter
public void setMaximumAllowedCharacter(int maximumAllowedCharacter)(Code)
Sets the maximum allowed character code that should be allowed unescaped such as 127 in US-ASCII (7 bit) or 255 in ISO-* (8 bit) or -1 to not escape any characters (other than the special XML characters like < > &) If this is not explicitly set then it is defaulted from the encoding.
Parameters:
  maximumAllowedCharacter - The maximumAllowedCharacter to set



setOutputStream
public void setOutputStream(OutputStream out) throws UnsupportedEncodingException(Code)



setProperty
public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)



setResolveEntityRefs
public void setResolveEntityRefs(boolean resolve)(Code)



setWriter
public void setWriter(Writer writer)(Code)



shouldEncodeChar
protected boolean shouldEncodeChar(char c)(Code)
Should the given character be escaped. This depends on the encoding of the document. boolean



startCDATA
public void startCDATA() throws SAXException(Code)



startDTD
public void startDTD(String name, String publicID, String systemID) throws SAXException(Code)



startDocument
public void startDocument() throws SAXException(Code)



startElement
public void startElement(String namespaceURI, String localName, String qName, Attributes attributes) throws SAXException(Code)



startEntity
public void startEntity(String name) throws SAXException(Code)



startPrefixMapping
public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)



unparsedEntityDecl
public void unparsedEntityDecl(String name, String publicID, String systemID, String notationName) throws SAXException(Code)



write
public void write(Attribute attribute) throws IOException(Code)
Writes the given org.dom4j.Attribute .
Parameters:
  attribute - Attribute to output.



write
public void write(Document doc) throws IOException(Code)

This will print the Document to the current Writer.

Warning: using your own Writer may cause the writer's preferred character encoding to be ignored. If you use encodings other than UTF8, we recommend using the method that takes an OutputStream instead.

Note: as with all Writers, you may need to flush() yours after this method returns.


Parameters:
  doc - Document to format.
throws:
  IOException - - if there's any problem writing.



write
public void write(Element element) throws IOException(Code)

Writes the org.dom4j.Element , including its Attribute s, and its value, and all its content (child nodes) to the current Writer.


Parameters:
  element - Element to output.



write
public void write(CDATA cdata) throws IOException(Code)
Writes the given CDATA .
Parameters:
  cdata - CDATA to output.



write
public void write(Comment comment) throws IOException(Code)
Writes the given Comment .
Parameters:
  comment - Comment to output.



write
public void write(DocumentType docType) throws IOException(Code)
Writes the given DocumentType .
Parameters:
  docType - DocumentType to output.



write
public void write(Entity entity) throws IOException(Code)
Writes the given Entity .
Parameters:
  entity - Entity to output.



write
public void write(Namespace namespace) throws IOException(Code)
Writes the given Namespace .
Parameters:
  namespace - Namespace to output.



write
public void write(ProcessingInstruction processingInstruction) throws IOException(Code)
Writes the given ProcessingInstruction .
Parameters:
  processingInstruction - ProcessingInstruction to output.



write
public void write(String text) throws IOException(Code)

Print out a String , Perfoms the necessary entity escaping and whitespace stripping.


Parameters:
  text - is the text to output



write
public void write(Text text) throws IOException(Code)
Writes the given Text .
Parameters:
  text - Text to output.



write
public void write(Node node) throws IOException(Code)
Writes the given Node .
Parameters:
  node - Node to output.



write
public void write(Object object) throws IOException(Code)
Writes the given object which should be a String, a Node or a List of Nodes.
Parameters:
  object - is the object to output.



writeAttribute
protected void writeAttribute(Attribute attribute) throws IOException(Code)



writeAttribute
protected void writeAttribute(Attributes attributes, int index) throws IOException(Code)



writeAttributes
protected void writeAttributes(Element element) throws IOException(Code)
Writes the attributes of the given element



writeAttributes
protected void writeAttributes(Attributes attributes) throws IOException(Code)



writeCDATA
protected void writeCDATA(String text) throws IOException(Code)



writeClose
public void writeClose(Element element) throws IOException(Code)

Writes the closing tag of an Element


Parameters:
  element - Element to output.



writeClose
protected void writeClose(String qualifiedName) throws IOException(Code)



writeComment
protected void writeComment(String text) throws IOException(Code)



writeDeclaration
protected void writeDeclaration() throws IOException(Code)

This will write the declaration to the given Writer. Assumes XML version 1.0 since we don't directly know.




writeDocType
protected void writeDocType(DocumentType docType) throws IOException(Code)



writeDocType
protected void writeDocType(String name, String publicID, String systemID) throws IOException(Code)



writeElement
protected void writeElement(Element element) throws IOException(Code)



writeElementContent
protected void writeElementContent(Element element) throws IOException(Code)
Outputs the content of the given element. If whitespace trimming is enabled then all adjacent text nodes are appended together before the whitespace trimming occurs to avoid problems with multiple text nodes being created due to text content that spans parser buffers in a SAX parser.



writeEmptyElementClose
protected void writeEmptyElementClose(String qualifiedName) throws IOException(Code)



writeEntity
protected void writeEntity(Entity entity) throws IOException(Code)



writeEntityRef
protected void writeEntityRef(String name) throws IOException(Code)



writeEscapeAttributeEntities
protected void writeEscapeAttributeEntities(String text) throws IOException(Code)



writeNamespace
protected void writeNamespace(Namespace namespace) throws IOException(Code)



writeNamespace
protected void writeNamespace(String prefix, String uri) throws IOException(Code)
Writes the SAX namepsaces



writeNamespaces
protected void writeNamespaces() throws IOException(Code)
Writes the SAX namepsaces



writeNode
protected void writeNode(Node node) throws IOException(Code)



writeNodeText
protected void writeNodeText(Node node) throws IOException(Code)
This method is used to write out Nodes that contain text and still allow for xml:space to be handled properly.



writeOpen
public void writeOpen(Element element) throws IOException(Code)

Writes the opening tag of an Element , including its Attribute s but without its content.


Parameters:
  element - Element to output.



writePrintln
protected void writePrintln() throws IOException(Code)

This will print a new line only if the newlines flag was set to true




writeProcessingInstruction
protected void writeProcessingInstruction(ProcessingInstruction processingInstruction) throws IOException(Code)



writeString
protected void writeString(String text) throws IOException(Code)



Methods inherited from org.xml.sax.helpers.XMLFilterImpl
public void characters(char ch, int start, int length) throws SAXException(Code)(Java Doc)
public void endDocument() throws SAXException(Code)(Java Doc)
public void endElement(String uri, String localName, String qName) throws SAXException(Code)(Java Doc)
public void endPrefixMapping(String prefix) throws SAXException(Code)(Java Doc)
public void error(SAXParseException e) throws SAXException(Code)(Java Doc)
public void fatalError(SAXParseException e) throws SAXException(Code)(Java Doc)
public ContentHandler getContentHandler()(Code)(Java Doc)
public DTDHandler getDTDHandler()(Code)(Java Doc)
public EntityResolver getEntityResolver()(Code)(Java Doc)
public ErrorHandler getErrorHandler()(Code)(Java Doc)
public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public XMLReader getParent()(Code)(Java Doc)
public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code)(Java Doc)
public void notationDecl(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc)
public void parse(InputSource input) throws SAXException, IOException(Code)(Java Doc)
public void parse(String systemId) throws SAXException, IOException(Code)(Java Doc)
public void processingInstruction(String target, String data) throws SAXException(Code)(Java Doc)
public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException(Code)(Java Doc)
public void setContentHandler(ContentHandler handler)(Code)(Java Doc)
public void setDTDHandler(DTDHandler handler)(Code)(Java Doc)
public void setDocumentLocator(Locator locator)(Code)(Java Doc)
public void setEntityResolver(EntityResolver resolver)(Code)(Java Doc)
public void setErrorHandler(ErrorHandler handler)(Code)(Java Doc)
public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void setParent(XMLReader parent)(Code)(Java Doc)
public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void skippedEntity(String name) throws SAXException(Code)(Java Doc)
public void startDocument() throws SAXException(Code)(Java Doc)
public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException(Code)(Java Doc)
public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc)
public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException(Code)(Java Doc)
public void warning(SAXParseException e) throws SAXException(Code)(Java Doc)

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.