Searched defs:attributeName (Results 26 - 36 of 36) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractXMLDocumentParser.java487 * @param attributeName The name of the attribute.
507 public void attributeDecl(String elementName, String attributeName, argument
H A DAbstractDOMParser.java2347 * @param attributeName The name of the attribute.
2367 public void attributeDecl (String elementName, String attributeName, argument
2377 fInternalSubset.append (attributeName);
2436 if (attributeName.startsWith("xmlns:") ||
2437 attributeName.equals("xmlns")) {
2440 else if (attributeName.startsWith("xml:")) {
2445 attributeName, namespaceURI, defaultValue.toString(), false);
2480 if (attributeName.startsWith("xmlns:") ||
2481 attributeName.equals("xmlns")) {
2484 else if (attributeName
[all...]
H A DAbstractSAXParser.java899 * @param attributeName The name of the attribute.
920 public void attributeDecl(String elementName, String attributeName, argument
929 String elemAttr = new StringBuffer(elementName).append("<").append(attributeName).toString();
956 fDeclHandler.attributeDecl(elementName, attributeName,
H A DDOMParserImpl.java1276 public void attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) throws XNIException { argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java273 * @param attributeName The name of the attribute.
293 public void attributeDecl(String elementName, String attributeName, argument
327 if (getAttributeDeclIndex(elementIndex, attributeName) != -1) {
390 fQName.setValues(null, attributeName, attributeName, null);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java971 Name attributeName = null; field in class:ElementImpl.AttributeManager
976 attributeName = newName;
981 attributeName = null;
988 return attributeName;
996 attributeName = null;
1001 if (attributeName != null) {
1002 removeAttribute(attributeName);
1004 addAttribute(attributeName, attributeValue);
1009 if (attributeName != null) {
1010 removeAttribute(attributeName);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXMBeanAttributes.java555 void collapse(String attributeName, final Component c) { argument
579 String attributeName =
583 createAttributeViewer(elem, mbean, attributeName, this);
1022 final String attributeName = getValueName(e.getFirstRow());
1024 new Attribute(attributeName,tableValue);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDProcessor.java849 * @param attributeName The name of the attribute.
869 public void attributeDecl(String elementName, String attributeName, argument
885 if (grammar.getAttributeDeclIndex(elementIndex, attributeName) != -1) {
893 new Object[]{ elementName, attributeName },
910 new Object[]{ attributeName},
916 fTableOfIDAttributeNames.put(elementName, attributeName);
935 new Object[]{ elementName, previousIDAttributeName, attributeName},
949 fNotationEnumVals.put(enumeration[i], attributeName);
953 fTableOfNOTATIONAttributeNames.put( elementName, attributeName);
968 new Object[]{ elementName, previousNOTATIONAttributeName, attributeName},
[all...]
H A DDTDGrammar.java584 * @param attributeName The name of the attribute.
604 public void attributeDecl(String elementName, String attributeName, argument
634 if (getAttributeDeclIndex(elementIndex, attributeName) != -1) {
697 fQName.setValues(null, attributeName, attributeName, null);
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DCompoundType.java1816 return attributeName;
2212 attributeName = name;
2317 attributeName = null;
2334 private String attributeName = null; field in class:CompoundType.Method
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java1202 String attributeName,
1213 attributeName,
1200 attributeDecl( String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) argument

Completed in 88 milliseconds

12