IDL Code Generation: CORBAConstant

I am generating .idl files from a data model, and I am running into an issue using elements with the <> stereotype. When using constants hosted within a "common" file, the generated code does not include the full qualified name of the type. For example:

****common.idl***

module Constants {

    const long THING = 255;

    const short ANOTHER_THING = 2;

};

***usage.idl***

#include common.idl

module usage {

    struct Struct {

        Constants value;

};

The expected output would be Common::Constants value, but that's not what I am seeing. What am I missing?