1 16 19 package org.apache.xalan.trace; 20 21 import org.apache.xalan.templates.ElemTemplateElement; 22 import org.apache.xalan.transformer.TransformerImpl; 23 import org.apache.xpath.XPath; 24 import org.apache.xpath.objects.XObject; 25 26 import org.w3c.dom.Node ; 27 28 33 public class EndSelectionEvent extends SelectionEvent 34 { 35 36 48 public EndSelectionEvent(TransformerImpl processor, Node sourceNode, 49 ElemTemplateElement styleNode, String attributeName, 50 XPath xpath, XObject selection) 51 { 52 53 super(processor, sourceNode, styleNode, attributeName, xpath, selection); 54 } 55 } 56 | Popular Tags |