1 50 51 package org.openlaszlo.iv.flash.xml.generic; 52 53 54 import org.openlaszlo.iv.flash.xml.*; 55 import org.openlaszlo.iv.flash.context.*; 56 57 import java.util.*; 58 59 import javax.xml.transform.TransformerException ; 60 61 import org.w3c.dom.*; 62 import org.w3c.dom.traversal.NodeIterator; 63 64 71 72 public class XMLContextImpl extends XMLContext { 73 74 80 public XMLContextImpl( Context parent, Node node ) { 81 super(parent, node); 82 } 83 84 91 public String getValue( String path ) { 92 return getValueFromParent( path ); 93 } 94 95 103 public List getValueList( String path ) { 104 return getValueListFromParent( path ); 105 } 106 107 } 108 109 110 | Popular Tags |