Package org.exist.debuggee

Examples of org.exist.debuggee.Debuggee.start()


  public Sequence eval(Sequence[] args, Sequence contextSequence) throws XPathException {

    try {
      Debuggee dbgr = BrokerPool.getInstance().getDebuggee();
     
      return new StringValue( dbgr.start(args[0].getStringValue()) );
     
    } catch (Throwable e) {
      throw new XPathException(this, Module.DEBUG001, e);
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.