Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.0.0
-
Component/s: DSL for Business Domain
-
Labels:None
-
Environment:mod4j 1.0.0-beta-3
-
Number of attachments :
Description
Business model contains:
Class Opdracht [
"When did the professional start the assignment / project"
datetime startDatum ;
"When did the professional finish the assignment / project"
datetime einddatum ;
...
Class OrdinaOpdracht inherits Opdracht [
...
The generated source OrdinaOpdrachtImplBase contains the following constructor:
public OrdinaOpdrachtImplBase(DateTime startDatum, DateTime einddatum,
String organisatie, String situatie, String taken,
String resultaten, String projectnaam) {
The type DateTime is not known in OrdinaOpdracht, causing a "cannot find symbol" compilation failure.
Note that OrdinaOpdracht inherits from Opdracht.
Fixed, by importing all inherited properties as well, instead of only the local ones.