/** | |
* Importing packages in the Lunifera Entity DSL: | |
* | |
* The datatype that is declared here can be accessed in packages that import this one. | |
* | |
* Entities in other packages can inherit from the BaseEntity declared here. | |
* | |
*/ | |
package org.eclipse.osbp.entitydsl.samples.theimp { | |
datatype String jvmType java.lang.String; | |
entity BaseEntity { | |
uuid String id; | |
} | |
} |