Data types used in content models
This one is a little weak
Java binding:
package org.w3c.dom.abstractSchemas;
public interface ASDataType {
  public static final short STRING_DATATYPE = 1;
  public short getASPrimitiveType();
}
IDL:
interface ASDataType {
  const short STRING_DATATYPE = 1;
        short getASPrimitiveType();
};