Java Doc for AttributeCollection.java in  » XML » saxonb » net » sf » saxon » om » 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 » XML » saxonb » net.sf.saxon.om 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.sf.saxon.om.AttributeCollection

All known Subclasses:   net.sf.saxon.om.AttributeCollectionImpl,  net.sf.saxon.tinytree.TinyAttributeCollection,
AttributeCollection
public interface AttributeCollection (Code)
AttributeCollection represents the collection of attributes available on a particular element node. It is modelled on the SAX2 Attributes interface, but is extended firstly to work with Saxon NamePools, and secondly to provide type information as required by the XPath 2.0 data model.




Method Summary
 intgetIndex(String uri, String localname)
     Get the index of an attribute (by name).
Parameters:
  uri - The namespace uri of the attribute.
Parameters:
  localname - The local name of the attribute.
 intgetIndexByFingerprint(int fingerprint)
    
 intgetLength()
     Return the number of attributes in the list.
 intgetLineNumber(int index)
     Get the line number part of the location of an attribute, at a given index.

Attribute location information is not available from a SAX parser, so this method is not useful for getting the location of an attribute in a source document.

 StringgetLocalName(int index)
     Get the local name of an attribute (by position).
Parameters:
  index - The position of the attribute in the list.
 intgetLocationId(int index)
     Get the locationID of an attribute (by position)
Parameters:
  index - The position of the attribute in the list.
 intgetNameCode(int index)
     Get the namecode of an attribute (by position).
Parameters:
  index - The position of the attribute in the list.
 StringgetPrefix(int index)
     Get the prefix of the name of an attribute (by position).
Parameters:
  index - The position of the attribute in the list.
 intgetProperties(int index)
     Get the properties of an attribute (by position)
Parameters:
  index - The position of the attribute in the list.
 StringgetQName(int index)
     Get the lexical QName of an attribute (by position).
Parameters:
  index - The position of the attribute in the list.
 StringgetSystemId(int index)
     Get the systemId part of the location of an attribute, at a given index.

Attribute location information is not available from a SAX parser, so this method is not useful for getting the location of an attribute in a source document.

 intgetTypeAnnotation(int index)
     Get the type annotation of an attribute (by position).
Parameters:
  index - The position of the attribute in the list.
 StringgetURI(int index)
     Get the namespace URI of an attribute (by position).
Parameters:
  index - The position of the attribute in the list.
public  StringgetValue(String uri, String localname)
     Get the value of an attribute (by name).
Parameters:
  uri - The namespace uri of the attribute.
Parameters:
  localname - The local name of the attribute.
 StringgetValue(int index)
     Get the value of an attribute (by position).
Parameters:
  index - The position of the attribute in the list.
 StringgetValueByFingerprint(int fingerprint)
    
 booleanisId(int index)
    



Method Detail
getIndex
int getIndex(String uri, String localname)(Code)
Get the index of an attribute (by name).
Parameters:
  uri - The namespace uri of the attribute.
Parameters:
  localname - The local name of the attribute. The index position of the attribute



getIndexByFingerprint
int getIndexByFingerprint(int fingerprint)(Code)
Get the index, given the fingerprint



getLength
int getLength()(Code)
Return the number of attributes in the list. The number of attributes in the list.



getLineNumber
int getLineNumber(int index)(Code)
Get the line number part of the location of an attribute, at a given index.

Attribute location information is not available from a SAX parser, so this method is not useful for getting the location of an attribute in a source document. However, in a Saxon result document, the location information represents the location in the stylesheet of the instruction used to generate this attribute, which is useful for debugging.


Parameters:
  index - the required attribute the line number of the location of the attribute



getLocalName
String getLocalName(int index)(Code)
Get the local name of an attribute (by position).
Parameters:
  index - The position of the attribute in the list. The local name of the attribute as a string, or null if thereis no attribute at that position.



getLocationId
int getLocationId(int index)(Code)
Get the locationID of an attribute (by position)
Parameters:
  index - The position of the attribute in the list. The location identifier of the attribute. This can be suppliedto a net.sf.saxon.event.LocationProvider in order to obtain theactual system identifier and line number of the relevant location



getNameCode
int getNameCode(int index)(Code)
Get the namecode of an attribute (by position).
Parameters:
  index - The position of the attribute in the list. The name code of the attribute, or -1 if there is no attribute at that position.



getPrefix
String getPrefix(int index)(Code)
Get the prefix of the name of an attribute (by position).
Parameters:
  index - The position of the attribute in the list. The prefix of the attribute name as a string, or null if thereis no attribute at that position. Returns "" for an attribute thathas no prefix.



getProperties
int getProperties(int index)(Code)
Get the properties of an attribute (by position)
Parameters:
  index - The position of the attribute in the list. The properties of the attribute. This is a setof bit-settings defined in class net.sf.saxon.event.ReceiverOptions. Themost interesting of these is {net.sf.saxon.event.ReceiverOptions.DEFAULTED_ATTRIBUTE,which indicates an attribute that was added to an element as a result of schema validation.



getQName
String getQName(int index)(Code)
Get the lexical QName of an attribute (by position).
Parameters:
  index - The position of the attribute in the list. The lexical QName of the attribute as a string, or null if thereis no attribute at that position.



getSystemId
String getSystemId(int index)(Code)
Get the systemId part of the location of an attribute, at a given index.

Attribute location information is not available from a SAX parser, so this method is not useful for getting the location of an attribute in a source document. However, in a Saxon result document, the location information represents the location in the stylesheet of the instruction used to generate this attribute, which is useful for debugging.


Parameters:
  index - the required attribute the systemId of the location of the attribute



getTypeAnnotation
int getTypeAnnotation(int index)(Code)
Get the type annotation of an attribute (by position).
Parameters:
  index - The position of the attribute in the list. The type annotation, as the fingerprint of the type name.The bit net.sf.saxon.om.NodeInfo.IS_DTD_TYPE represents a DTD-derived type.



getURI
String getURI(int index)(Code)
Get the namespace URI of an attribute (by position).
Parameters:
  index - The position of the attribute in the list. The local name of the attribute as a string, or null if thereis no attribute at that position.



getValue
public String getValue(String uri, String localname)(Code)
Get the value of an attribute (by name).
Parameters:
  uri - The namespace uri of the attribute.
Parameters:
  localname - The local name of the attribute. The index position of the attribute



getValue
String getValue(int index)(Code)
Get the value of an attribute (by position).
Parameters:
  index - The position of the attribute in the list. The attribute value as a string, or null ifthere is no attribute at that position.



getValueByFingerprint
String getValueByFingerprint(int fingerprint)(Code)
Get the attribute value using its fingerprint



isId
boolean isId(int index)(Code)
Determine whether a given attribute has the is-ID property set



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