Hello,

I am using Moose 6.0 to generate an UML diagram for a paper.

In the UML diagram below is there a way to specify a Line between the compilationContext instance variable and CompilationContext class box?

| b |
b := RTUMLClassBuilder new.
b
    instanceVariables: #instVarNames;
    methodselector: #selector;
    methodsNames: #();
    attributeselector: #yourself.

b attributeShape color: Color black.
b methodShape color: Color black.
b classNameShape color: Color black.
b lineShape color: Color black.
b boxShape borderColor: Color black.

b
    addObjects: { Compiler . CompilationContext };
    treeLayout;
    build;
    view

Hernán