UML constructor discards undefined types

When I print the method signature, the UML Designer discards all unknown types, for example if you add a class FooBuilder

to an empty class diagram and then enter the following signature:

setBar(b: Bar): FooBuilder

      

Bar

will be discarded and the signature will be set to:

setBar(b: ): FooBuilder

      

Is it possible to disable this behavior, i.e. to force the UML Designer to accept types that are not yet defined (perhaps autodetect them)?

+3


source to share


1 answer


It would be an interesting feature to automatically create a class for unknown types. Could you please post a new issue in the bug tracker: https://github.com/ObeoNetwork/UML-Designer/issues/new ?



+1


source







All Articles