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


01:        /*
02:         * Copyright (c) 2000 World Wide Web Consortium,
03:         * (Massachusetts Institute of Technology, Institut National de
04:         * Recherche en Informatique et en Automatique, Keio University). All
05:         * Rights Reserved. This program is distributed under the W3C's Software
06:         * Intellectual Property License. This program is distributed in the
07:         * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08:         * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09:         * PURPOSE.
10:         * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
11:         */
12:
13:        package org.w3c.dom;
14:
15:        /**
16:         * This interface represents an entity, either parsed or unparsed, in an XML 
17:         * document. Note that this models the entity itself not the entity 
18:         * declaration. <code>Entity</code> declaration modeling has been left for a 
19:         * later Level of the DOM specification.
20:         * <p>The <code>nodeName</code> attribute that is inherited from 
21:         * <code>Node</code> contains the name of the entity.
22:         * <p>An XML processor may choose to completely expand entities before the 
23:         * structure model is passed to the DOM; in this case there will be no 
24:         * <code>EntityReference</code> nodes in the document tree.
25:         * <p>XML does not mandate that a non-validating XML processor read and 
26:         * process entity declarations made in the external subset or declared in 
27:         * external parameter entities. This means that parsed entities declared in 
28:         * the external subset need not be expanded by some classes of applications, 
29:         * and that the replacement value of the entity may not be available. When 
30:         * the replacement value is available, the corresponding <code>Entity</code> 
31:         * node's child list represents the structure of that replacement text. 
32:         * Otherwise, the child list is empty.
33:         * <p>The DOM Level 2 does not support editing <code>Entity</code> nodes; if a 
34:         * user wants to make changes to the contents of an <code>Entity</code>, 
35:         * every related <code>EntityReference</code> node has to be replaced in the 
36:         * structure model by a clone of the <code>Entity</code>'s contents, and 
37:         * then the desired changes must be made to each of those clones instead. 
38:         * <code>Entity</code> nodes and all their descendants are readonly.
39:         * <p>An <code>Entity</code> node does not have any parent.If the entity 
40:         * contains an unbound namespace prefix, the <code>namespaceURI</code> of 
41:         * the corresponding node in the <code>Entity</code> node subtree is 
42:         * <code>null</code>. The same is true for <code>EntityReference</code> 
43:         * nodes that refer to this entity, when they are created using the 
44:         * <code>createEntityReference</code> method of the <code>Document</code> 
45:         * interface. The DOM Level 2 does not support any mechanism to resolve 
46:         * namespace prefixes.
47:         * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>Document Object Model (DOM) Level 2 Core Specification</a>.
48:         */
49:        public interface Entity extends Node {
50:            /**
51:             * The public identifier associated with the entity, if specified. If the 
52:             * public identifier was not specified, this is <code>null</code>.
53:             */
54:            public String getPublicId();
55:
56:            /**
57:             * The system identifier associated with the entity, if specified. If the 
58:             * system identifier was not specified, this is <code>null</code>.
59:             */
60:            public String getSystemId();
61:
62:            /**
63:             * For unparsed entities, the name of the notation for the entity. For 
64:             * parsed entities, this is <code>null</code>.
65:             */
66:            public String getNotationName();
67:
68:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.