Java Doc for QAttributedNode.java in  » EJB-Server-resin-3.1.5 » resin » com » caucho » xml » 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 » EJB Server resin 3.1.5 » resin » com.caucho.xml 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.xml.QAbstractNode
      com.caucho.xml.QNode
         com.caucho.xml.QAttributedNode

All known Subclasses:   com.caucho.xml.QElement,
QAttributedNode
abstract public class QAttributedNode extends QNode (Code)

Inner Class :static class QAttributeMap implements NamedNodeMap

Field Summary
 QAttr_firstAttribute
    


Method Summary
public  StringgetAttribute(String name)
     Returns the named attribute.
public  StringgetAttributeNS(String namespaceURI, String local)
     Returns the attribute specified by a namespace.
public  AttrgetAttributeNode(String name)
     Returns the attribute specified by the name.
public  AttrgetAttributeNodeNS(String uri, String local)
    
public  NamedNodeMapgetAttributes()
     Returns a map of the attributes.
public  AttrgetFirstAttribute()
     Returns the first attribute in the attribute list.
public  booleanhasAttribute(String name)
    
public  booleanhasAttributeNS(String uri, String local)
    
public  booleanhasAttributes()
     Returns true if the element has attributes.
public  voidremoveAttribute(String name)
     Removes the named attribute.
public  voidremoveAttributeNS(String uri, String name)
     Removes the attribute specified by the localname and namespace.
public  AttrremoveAttributeNode(Attr attr)
     Removes the matching attribute.
public  AttrremoveAttributeNodeNS(Attr attr)
     Removes the matching attribute.
public  voidsetAttribute(String name, String value)
    
 voidsetAttribute(QName name, String value)
    
public  voidsetAttributeNS(String uri, String local, String value)
    
public  AttrsetAttributeNode(Attr attr)
     Sets an attribute, specified by the object.
public  AttrsetAttributeNodeNS(Attr attr)
    
public  voidsetIdAttribute(String name, boolean isId)
     Sets an attribute, specified by the object.
public  voidsetIdAttributeNS(String namespaceURI, String localName, boolean isId)
     Sets an attribute, specified by the object.
public  voidsetIdAttributeNode(Attr attr, boolean isId)
     Sets an attribute, specified by the object.
 QAttrunlink(String name)
     Unlinks an attribute, returning it.
public  QAttrunlink(String uri, String local)
     Removes the attribute named by the URI and local name.

Field Detail
_firstAttribute
QAttr _firstAttribute(Code)





Method Detail
getAttribute
public String getAttribute(String name)(Code)
Returns the named attribute.



getAttributeNS
public String getAttributeNS(String namespaceURI, String local)(Code)
Returns the attribute specified by a namespace.



getAttributeNode
public Attr getAttributeNode(String name)(Code)
Returns the attribute specified by the name.



getAttributeNodeNS
public Attr getAttributeNodeNS(String uri, String local)(Code)



getAttributes
public NamedNodeMap getAttributes()(Code)
Returns a map of the attributes.



getFirstAttribute
public Attr getFirstAttribute()(Code)
Returns the first attribute in the attribute list.



hasAttribute
public boolean hasAttribute(String name)(Code)



hasAttributeNS
public boolean hasAttributeNS(String uri, String local)(Code)



hasAttributes
public boolean hasAttributes()(Code)
Returns true if the element has attributes.



removeAttribute
public void removeAttribute(String name)(Code)
Removes the named attribute.



removeAttributeNS
public void removeAttributeNS(String uri, String name)(Code)
Removes the attribute specified by the localname and namespace.



removeAttributeNode
public Attr removeAttributeNode(Attr attr)(Code)
Removes the matching attribute.



removeAttributeNodeNS
public Attr removeAttributeNodeNS(Attr attr)(Code)
Removes the matching attribute.



setAttribute
public void setAttribute(String name, String value) throws DOMException(Code)



setAttribute
void setAttribute(QName name, String value) throws DOMException(Code)



setAttributeNS
public void setAttributeNS(String uri, String local, String value)(Code)



setAttributeNode
public Attr setAttributeNode(Attr attr) throws DOMException(Code)
Sets an attribute, specified by the object.



setAttributeNodeNS
public Attr setAttributeNodeNS(Attr attr) throws DOMException(Code)



setIdAttribute
public void setIdAttribute(String name, boolean isId) throws DOMException(Code)
Sets an attribute, specified by the object.



setIdAttributeNS
public void setIdAttributeNS(String namespaceURI, String localName, boolean isId) throws DOMException(Code)
Sets an attribute, specified by the object.



setIdAttributeNode
public void setIdAttributeNode(Attr attr, boolean isId) throws DOMException(Code)
Sets an attribute, specified by the object.



unlink
QAttr unlink(String name)(Code)
Unlinks an attribute, returning it.



unlink
public QAttr unlink(String uri, String local)(Code)
Removes the attribute named by the URI and local name.



Fields inherited from com.caucho.xml.QNode
protected QAbstractNode _firstChild(Code)(Java Doc)
protected QAbstractNode _lastChild(Code)(Java Doc)

Methods inherited from com.caucho.xml.QNode
public Node appendChild(Node newNode) throws DOMException(Code)(Java Doc)
public boolean checkValid() throws Exception(Code)(Java Doc)
public boolean equals(Object arg)(Code)(Java Doc)
public boolean equals(Node arg, boolean deep)(Code)(Java Doc)
public NamedNodeMap getAttributes()(Code)(Java Doc)
public NodeList getChildNodes()(Code)(Java Doc)
public Node getFirstChild()(Code)(Java Doc)
public Node getLastChild()(Code)(Java Doc)
public QAbstractNode getNextPreorder()(Code)(Java Doc)
public Node getNextSibling()(Code)(Java Doc)
public String getNodeValue()(Code)(Java Doc)
public Node getPreviousSibling()(Code)(Java Doc)
public boolean hasChildNodes()(Code)(Java Doc)
public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
public void normalize()(Code)(Java Doc)
public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc)
public Node replaceChild(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
public void setNodeValue(String value)(Code)(Java Doc)
public void setTextContent(String content)(Code)(Java Doc)

Fields inherited from com.caucho.xml.QAbstractNode
protected static L10N L(Code)(Java Doc)
String _filename(Code)(Java Doc)
int _line(Code)(Java Doc)
QAbstractNode _next(Code)(Java Doc)
QDocument _owner(Code)(Java Doc)
QNode _parent(Code)(Java Doc)
QAbstractNode _previous(Code)(Java Doc)
String _systemId(Code)(Java Doc)

Methods inherited from com.caucho.xml.QAbstractNode
public Node appendChild(Node newNode) throws DOMException(Code)(Java Doc)
public static String baseURI(Node node)(Code)(Java Doc)
public boolean checkValid() throws Exception(Code)(Java Doc)
public Node cloneNode(boolean deep)(Code)(Java Doc)
public short compareDocumentPosition(Node node)(Code)(Java Doc)
public short compareTreePosition(Node other)(Code)(Java Doc)
public boolean equals(Node arg, boolean deep)(Code)(Java Doc)
public NamedNodeMap getAttributes()(Code)(Java Doc)
public String getBaseURI()(Code)(Java Doc)
public String getCanonicalName()(Code)(Java Doc)
public NodeList getChildNodes()(Code)(Java Doc)
public int getColumn()(Code)(Java Doc)
public ArrayList<Depend> getDependencyList()(Code)(Java Doc)
public Object getFeature(String feature, String version)(Code)(Java Doc)
public String getFilename()(Code)(Java Doc)
public Node getFirstChild()(Code)(Java Doc)
public Node getInterface(String feature)(Code)(Java Doc)
public Node getLastChild()(Code)(Java Doc)
public int getLine()(Code)(Java Doc)
public String getLocalName()(Code)(Java Doc)
public String getNamespaceURI()(Code)(Java Doc)
public QAbstractNode getNextContent()(Code)(Java Doc)
public QAbstractNode getNextPreorder()(Code)(Java Doc)
public Node getNextSibling()(Code)(Java Doc)
public String getNodeValue()(Code)(Java Doc)
public Document getOwnerDocument()(Code)(Java Doc)
public Node getParentNode()(Code)(Java Doc)
public String getPrefix()(Code)(Java Doc)
public QAbstractNode getPreviousContent()(Code)(Java Doc)
public Node getPreviousSibling()(Code)(Java Doc)
public QName getQName()(Code)(Java Doc)
public String getTextContent() throws DOMException(Code)(Java Doc)
public String getTextValue()(Code)(Java Doc)
public Object getUserData(String data)(Code)(Java Doc)
public boolean hasAttributes()(Code)(Java Doc)
public boolean hasChildNodes()(Code)(Java Doc)
public boolean hasContent()(Code)(Java Doc)
public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
public boolean isDefaultNamespace(String namespaceURI)(Code)(Java Doc)
public boolean isEqualNode(Node arg)(Code)(Java Doc)
boolean isNameValid(String name)(Code)(Java Doc)
public boolean isSameNode(Node other)(Code)(Java Doc)
public boolean isSupported(String feature, String version)(Code)(Java Doc)
public String lookupNamespacePrefix(String namespaceURI, boolean useDefault)(Code)(Java Doc)
public String lookupNamespaceURI(String prefix)(Code)(Java Doc)
public String lookupPrefix(String feature)(Code)(Java Doc)
public void normalize()(Code)(Java Doc)
void print(XmlPrinter out) throws IOException(Code)(Java Doc)
public void print(WriteStream out) throws IOException(Code)(Java Doc)
public void printHtml(WriteStream out) throws IOException(Code)(Java Doc)
public void printPretty(WriteStream out) throws IOException(Code)(Java Doc)
void remove()(Code)(Java Doc)
public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc)
public Node replaceChild(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
public void setFeature(String feature, boolean value)(Code)(Java Doc)
public void setLocation(String systemId, String filename, int line, int column)(Code)(Java Doc)
public void setNodeValue(String value)(Code)(Java Doc)
public void setPrefix(String prefix)(Code)(Java Doc)
public void setTextContent(String textContent) throws DOMException(Code)(Java Doc)
public Object setUserData(String key, Object value, UserDataHandler userData)(Code)(Java Doc)
public boolean supports(String feature, String version)(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.