package com.jclark.xsl.om;

/**
 * Names are the same if they have the same namespace, local part and
 * creator.
 */
public interface Name {
  static String XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace";
  String getNamespace();
  String getLocalPart();
  String getPrefix();
  Object getCreator();
}
