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 32 public class SelectionEvent implements java.util.EventListener 33 { 34 35 38 public final ElemTemplateElement m_styleNode; 39 40 43 public final TransformerImpl m_processor; 44 45 48 public final Node m_sourceNode; 49 50 53 public final String m_attributeName; 54 55 58 public final XPath m_xpath; 59 60 63 public final XObject m_selection; 64 65 77 public SelectionEvent(TransformerImpl processor, Node sourceNode, 78 ElemTemplateElement styleNode, String attributeName, 79 XPath xpath, XObject selection) 80 { 81 82 this.m_processor = processor; 83 this.m_sourceNode = sourceNode; 84 this.m_styleNode = styleNode; 85 this.m_attributeName = attributeName; 86 this.m_xpath = xpath; 87 this.m_selection = selection; 88 } 89 } 90 | Popular Tags |