We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently typed relations may only be used between types with explicit labels. It shall be possible to specify typed relations in templates, e.g.
public interface Template1 { TemplateRelation getTemplateRelation(); } public interface Template2 { TemplateRelation getTemplateRelation(); } public interface TemplateRelation { @Outgoing Template1 getTemplate1(); @Incoming Template2 getTemplate2(); } @Label public interface A1 extends Template1 { } @Label public interface A2 extends Template1 { } @Label public interface B1 extends Template2 { } @Label public interface B2 extends Template2 { }
The text was updated successfully, but these errors were encountered:
DirkMahler
No branches or pull requests
Currently typed relations may only be used between types with explicit labels. It shall be possible to specify typed relations in templates, e.g.
The text was updated successfully, but these errors were encountered: