Source Code Cross Referenced for ElementDefinitionImpl.java in  » XML » xerces-2_9_1 » org » apache » xerces » 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 » XML » xerces 2_9_1 » org.apache.xerces.dom 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         * 
009:         *      http://www.apache.org/licenses/LICENSE-2.0
010:         * 
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:
018:        package org.apache.xerces.dom;
019:
020:        import org.w3c.dom.NamedNodeMap;
021:        import org.w3c.dom.Node;
022:
023:        /**
024:         * NON-DOM CLASS: Describe one of the Elements (and its associated
025:         * Attributes) defined in this Document Type.
026:         * <p>
027:         * I've included this in Level 1 purely as an anchor point for default
028:         * attributes. In Level 2 it should enable the ChildRule support.
029:         *
030:         * @xerces.internal
031:         *
032:         * @version $Id: ElementDefinitionImpl.java 447266 2006-09-18 05:57:49Z mrglavas $
033:         */
034:        public class ElementDefinitionImpl extends ParentNode {
035:
036:            //
037:            // Constants
038:            //
039:
040:            /** Serialization version. */
041:            static final long serialVersionUID = -8373890672670022714L;
042:
043:            //
044:            // Data
045:            //
046:
047:            /** Element definition name. */
048:            protected String name;
049:
050:            /** Default attributes. */
051:            protected NamedNodeMapImpl attributes;
052:
053:            //
054:            // Constructors
055:            //
056:
057:            /** Factory constructor. */
058:            public ElementDefinitionImpl(CoreDocumentImpl ownerDocument,
059:                    String name) {
060:                super (ownerDocument);
061:                this .name = name;
062:                attributes = new NamedNodeMapImpl(ownerDocument);
063:            }
064:
065:            //
066:            // Node methods
067:            //
068:
069:            /** 
070:             * A short integer indicating what type of node this is. The named
071:             * constants for this value are defined in the org.w3c.dom.Node interface.
072:             */
073:            public short getNodeType() {
074:                return NodeImpl.ELEMENT_DEFINITION_NODE;
075:            }
076:
077:            /**
078:             * Returns the element definition name
079:             */
080:            public String getNodeName() {
081:                if (needsSyncData()) {
082:                    synchronizeData();
083:                }
084:                return name;
085:            }
086:
087:            /**
088:             * Replicate this object.
089:             */
090:            public Node cloneNode(boolean deep) {
091:
092:                ElementDefinitionImpl newnode = (ElementDefinitionImpl) super 
093:                        .cloneNode(deep);
094:                // NamedNodeMap must be explicitly replicated to avoid sharing
095:                newnode.attributes = attributes.cloneMap(newnode);
096:                return newnode;
097:
098:            } // cloneNode(boolean):Node
099:
100:            /**
101:             * Query the attributes defined on this Element.
102:             * <p>
103:             * In the base implementation this Map simply contains Attribute objects
104:             * representing the defaults. In a more serious implementation, it would
105:             * contain AttributeDefinitionImpl objects for all declared Attributes,
106:             * indicating which are Default, DefaultFixed, Implicit and/or Required.
107:             * 
108:             * @return org.w3c.dom.NamedNodeMap containing org.w3c.dom.Attribute
109:             */
110:            public NamedNodeMap getAttributes() {
111:
112:                if (needsSyncChildren()) {
113:                    synchronizeChildren();
114:                }
115:                return attributes;
116:
117:            } // getAttributes():NamedNodeMap
118:
119:        } // class ElementDefinitionImpl
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.