package com.jclark.xsl.tr;

import com.jclark.xsl.om.*;

public interface OutputMethod {
  Name getName();
  String getAttributeValue(Name name);
  Name[] getAttributeNames();
  Name[] getCdataSectionElements();
  NameTable getNameTable();
}
