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