Home | History | Annotate | Download | only in processor

Lines Matching refs:Attributes

33 import org.xml.sax.Attributes;
155 * @param attributes The specified or defaulted attributes.
158 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
260 * @param attributes The list of attributes.
264 StylesheetHandler handler, String rawName, Attributes attributes,
268 setPropertiesFromAttributes(handler, rawName, attributes, target, true);
277 * @param attributes The list of attributes.
281 * @return the attributes not allowed on this element.
285 Attributes setPropertiesFromAttributes(
286 StylesheetHandler handler, String rawName, Attributes attributes,
306 int nAttrs = attributes.getLength();
310 String attrUri = attributes.getURI(i);
313 && (attributes.getQName(i).startsWith("xmlns:") ||
314 attributes.getQName(i).equals("xmlns")))
318 String attrLocalName = attributes.getLocalName(i);
327 handler.error(XSLTErrorResources.ER_ATTR_NOT_ALLOWED, new Object[]{attributes.getQName(i), rawName}, null);//"\""+attributes.getQName(i)+"\""
334 attributes.getQName(i),
335 attributes.getType(i),
336 attributes.getValue(i));
344 attributes.getQName(i), attributes.getValue(i),