package com.jclark.xsl.tr;

import com.jclark.xsl.om.*;

public interface Sheet {
  Result process(Node node, Result result) throws XSLException;
  boolean getIndentResult();
  String getResultNamespace();
  LoadContext getSourceLoadContext();
}
