Searched defs:notations (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DDTDEvent.java74 public void setNotations(java.util.List notations){ argument
75 fNotations = notations;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DDTDEvent.java82 * Return a List containing the notations declared in the DTD.
104 public void setNotations(List notations){ argument
105 _notations = notations;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDocumentTypeImpl.java76 protected NamedNodeMapImpl notations; field in class:DocumentTypeImpl
109 notations = new NamedNodeMapImpl(this);
208 newnode.notations = notations.cloneMap(newnode);
278 //test if NamedNodeMaps entities and notations are equal
299 NamedNodeMapImpl argNotations = argDocType.notations;
301 if ((notations == null && argNotations != null)
302 || (notations != null && argNotations == null))
305 if (notations != null && argNotations != null) {
306 if (notations
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DSchemaImpl.java160 private final Map<String,XSNotation> notations = new HashMap<String,XSNotation>(); field in class:SchemaImpl
161 private final Map<String,XSNotation> notationsView = Collections.unmodifiableMap(notations);
163 notations.put( newDecl.getName(), newDecl );
169 return notations.get(name);
172 return notations.values().iterator();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDParser.java93 Hashtable notations = new Hashtable(7); field in class:DTDParser
254 notations.clear();
358 notations.clear();
1013 // externally defined notations in standalone docs as
1429 if (notations.get(name) == null)
1430 notations.put(name, name);
1828 if (notations.get(externalId.notation) == null)
1829 notations.put(externalId.notation, Boolean.TRUE);
2044 Object value = notations.get(name);
2049 notations
[all...]

Completed in 637 milliseconds