Home | History | Annotate | Download | only in processor

Lines Matching refs:XSLTElementProcessor

365   XSLTElementProcessor getProcessorFor(
370 XSLTElementProcessor currentProcessor = getCurrentProcessor();
372 XSLTElementProcessor elemProcessor = def.getProcessorFor(uri, localName);
476 XSLTElementProcessor elemProcessor = getCurrentProcessor();
555 XSLTElementProcessor elemProcessor = getCurrentProcessor();
620 XSLTElementProcessor elemProcessor = getProcessorFor(uri, localName,
663 XSLTElementProcessor p = getCurrentProcessor();
689 XSLTElementProcessor elemProcessor = getCurrentProcessor();
1256 * Get the current XSLTElementProcessor at the top of the stack.
1258 * @return Valid XSLTElementProcessor, which should never be null.
1260 XSLTElementProcessor getCurrentProcessor()
1262 return (XSLTElementProcessor) m_processors.peek();
1266 * Push the current XSLTElementProcessor onto the top of the stack.
1270 void pushProcessor(XSLTElementProcessor processor)
1276 * Pop the current XSLTElementProcessor from the top of the stack.
1277 * @return the XSLTElementProcessor which was popped.
1279 XSLTElementProcessor popProcessor()
1281 return (XSLTElementProcessor) m_processors.pop();
1340 * Push the current XSLTElementProcessor to the top of the stack. As a
1357 * Get the current XSLTElementProcessor from the top of the stack.