package org.w3c.dom;
  
public interface TypeInfo {
 public String  getTypeName();
 public String  getTypeNamespace();
 public boolean isDerivedFrom(String typeNamespace, 
   String typeName, int derivationMethod);
 
 public static int DERIVATION_EXTENSION;
 public static int DERIVATION_LIST;
 public static int DERIVATION_RESTRICTION;
 public static int DERIVATION_UNION;
}