DOM 3 TypeInfo interface

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;

}

Previous | Next | Top | Cafe con Leche

Copyright 2007 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified March 11, 2007