Interface Dictionary

A dictionary definition

interface Dictionary {
    name: string;
    ordered?: boolean;
    elements: Element[];
    families?: Family[];
}

Properties

name: string

Internal name used for dictionary, not normally exposed to users

ordered?: boolean

True if dictionary was defined with [] brackets, false if defined with {}. Not populated for array dimensions (information not retained by cawic). Ignored by XCAWI2.

elements: Element[]
families?: Family[]