com.xml_project.morganaxproc.extensions
Interface StepPackage


public interface StepPackage

This interface can be used to write user defined XProc extension steps in Java. All steps must have the same namespace uri, given by getNamespaceURI.


Method Summary
 List<Class<? extends com.xml_project.morganaxproc.core.steptypes.BuildInStep>> getDeclaredSteps()
          Defines the list of steps contained in this step library.
 String getNamespaceURI()
          Defines the namespace of the step library.
 

Method Detail

getNamespaceURI

String getNamespaceURI()
Defines the namespace of the step library.

Returns:
a namespace uri.

getDeclaredSteps

List<Class<? extends com.xml_project.morganaxproc.core.steptypes.BuildInStep>> getDeclaredSteps()
Defines the list of steps contained in this step library.

Returns:
The list of steps contained in this library.