blob: deaa0abd5d0f7f2dabe236a8ef7885e04bf4f626 [file] [log] [blame]
/**
* Importing packages in the Lunifera Entity DSL:
*
* The import statement specifies the package to be imported into this package.
* "String" datatype and BaseEntity declaration are found in the imported package.
* Since the Machine Entity inherits from the BaseEntity, no ID field is necessary here.
*
* Import statements support the use of the *-wildcard.
*
*/
package org.eclipse.osbp.entitydsl.samples.theimporter {
import org.eclipse.osbp.entitydsl.samples.theimp.*;
entity Machine extends BaseEntity {
}
}