I want to declare my own datatype in order to use it in an other entity.
JDL doesn't seem to recognize the entities that I already declared. How can I declare my own datatypes?
entity Adress{
street String,
streetNumber Integer,
postCode Integer,
city String
}
entity Doctor {
lanr Integer,
telephone Integer,
adress Adress
}
I expected to be able to use Adress
as an Datatype
because the JDL will create a Java Class
.