Package org.exist.xslt.expression.i

Examples of org.exist.xslt.expression.i.Parameted


    }
  }

  public void analyze(AnalyzeContextInfo contextInfo) throws XPathException {
    if (contextInfo.getParent() instanceof Parameted) {
      Parameted parameted = (Parameted) contextInfo.getParent();
      parameted.addXSLParam(this);
    } else {
      throw new XPathException("wrong parent");//XXX: error
    }
   
      super.analyze(contextInfo);
View Full Code Here

TOP

Related Classes of org.exist.xslt.expression.i.Parameted

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.