I am using j2objc.
I have 2 classes:
LabelPosition.java
Event.java
In Event I have references to LabelPostion
I could translate the standalone Class Labelposition without problems. Packagestructure and the File .h & -m are created.
Now I try to translate the Event.java, which has references to LabelPosition as follow:
./j2objc --verbose -d objective-c -sourcepath . Event.java
I get errors:
error: Event.java:79: LabelPosition cannot be resolved to a type
error: Event.java:79: LabelPosition cannot be resolved to a type
error: Event.java:284: LabelPosition cannot be resolved to a type
error: Event.java:285: LabelPosition cannot be resolved to a type
error: Event.java:287: LabelPosition cannot be resolved to a type
error: Event.java:288: LabelPosition cannot be resolved to a type
Following screens shows my Folderstructur:
What am I doing wrong ?