net.sf.saxon.Controller Java Examples

The following examples show how to use net.sf.saxon.Controller. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XPathFunctionFromUserFunction.java    From ph-schematron with Apache License 2.0 5 votes vote down vote up
public XPathFunctionFromUserFunction (@Nonnull final Configuration aConfiguration,
                                      @Nonnull final Controller aXQController,
                                      @Nonnull final UserFunction aUserFunc)
{
  m_aConfiguration = ValueEnforcer.notNull (aConfiguration, "Configuration");
  m_aUserFunc = ValueEnforcer.notNull (aUserFunc, "UserFunc");
  m_aXQController = ValueEnforcer.notNull (aXQController, "XQController");
}
 
Example #2
Source File: SaxonTraceListener.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
@Override
public void open(Controller controller) { }