如何在 MetaPOST 中对类参数或方法设置构造型

如何在 MetaPOST 中对类参数或方法设置构造型

我希望能够在类内的方法上设置事件构造型。我已阅读文档,但未找到有关此主题的任何内容。

如下所示,该<<<event>>>部分显示为另一个参数

如果输出类似于https://stackoverflow.com/a/24693930/4788850

在项目中添加了一个功能请求,但目前需要一个解决方法。 https://github.com/ogheorghies/MetaUML/issues/13


input metauml;

beginfig(1);
    Class.Bootstrapper
    ("Bootstrapper")
    ("+app: Application",
    "+container: Container",
    "<<event>>", 
    "+cancel: CancelEventHandler")
    ("+Shutdown(): bool");

    drawObject(Bootstrapper);

endfig;
end;

上述代码生成的输出

相关内容