Source Code Cross Referenced for Attributes2.java in  » Web-Server » Rimfaxe-Web-Server » org » xml » sax » ext » 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 » Rimfaxe Web Server » org.xml.sax.ext 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        // Attributes2.java - extended Attributes
02:        // http://www.saxproject.org
03:        // Public Domain: no warranty.
04:        // $Id: Attributes2.java,v 1.3 2002/02/01 20:06:20 db Exp $
05:
06:        package org.xml.sax.ext;
07:
08:        import org.xml.sax.Attributes;
09:
10:        /**
11:         * SAX2 extension to augment the per-attribute information
12:         * provided though {@link Attributes}.
13:         * If an implementation supports this extension, the attributes
14:         * provided in {@link org.xml.sax.ContentHandler#startElement
15:         * ContentHandler.startElement() } will implement this interface,
16:         * and the <em>http://xml.org/sax/features/use-attributes2</em>
17:         * feature flag will have the value <em>true</em>.
18:         *
19:         * <blockquote>
20:         * <em>This module, both source code and documentation, is in the
21:         * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
22:         * </blockquote>
23:         *
24:         * <p> XMLReader implementations are not required to support this
25:         * information, and it is not part of core-only SAX2 distributions.</p>
26:         *
27:         * @since SAX 2.0 (extensions 1.1 alpha)
28:         * @author David Brownell
29:         * @version TBS
30:         */
31:        public interface Attributes2 extends Attributes {
32:            /**
33:             * Returns true unless the attribute value was provided
34:             * by DTD defaulting.
35:             *
36:             * @param index The attribute index (zero-based).
37:             * @return true if the value was found in the XML text,
38:             *		false if the value was provided by DTD defaulting.
39:             * @exception java.lang.ArrayIndexOutOfBoundsException When the
40:             *            supplied index does not identify an attribute.
41:             */
42:            public boolean isSpecified(int index);
43:
44:            /**
45:             * Returns true unless the attribute value was provided
46:             * by DTD defaulting.
47:             *
48:             * @param uri The Namespace URI, or the empty string if
49:             *        the name has no Namespace URI.
50:             * @param localName The attribute's local name.
51:             * @return true if the value was found in the XML text,
52:             *		false if the value was provided by DTD defaulting.
53:             * @exception java.lang.IllegalArgumentException When the
54:             *            supplied names do not identify an attribute.
55:             */
56:            public boolean isSpecified(String uri, String localName);
57:
58:            /**
59:             * Returns true unless the attribute value was provided
60:             * by DTD defaulting.
61:             *
62:             * @param qName The XML 1.0 qualified name.
63:             * @return true if the value was found in the XML text,
64:             *		false if the value was provided by DTD defaulting.
65:             * @exception java.lang.IllegalArgumentException When the
66:             *            supplied name does not identify an attribute.
67:             */
68:            public boolean isSpecified(String qName);
69:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.