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
 java.util.List<java.lang.Class<? extends com.xml_project.morganaxproc.core.steptypes.BuildInStep>> getDeclaredSteps()
          Defines the list of steps contained in this step library.
 java.lang.String getNamespaceURI()
          Defines the namespace of the step library.
 

Method Detail

getNamespaceURI

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

Returns:
a namespace uri.

getDeclaredSteps

java.util.List<java.lang.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.