I'm currently trying to code my UML-diagram scheme in JDL-Studio, but inheritance isn't supported apparently. Answers from different platforms didn't help.
Let's say I want the class Fashion to inherit from Department. Is there a way to bypass the inheritance issue?
I aim to import the finished JDL-Studio code to my IntelliJ project.
I included some relation types, so you can see the syntax of JDL-studio.
relationship OneToOne {
Location{country} to Country
}
relationship OneToOne {
Department{location} to Location
}
relationship ManyToMany {
Job{task(title)} to Task{job}
}