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
Add @Require annotation.
@Require
This should be placed on annotations definitions, similar like @Conflicts.
@Conflicts
This denotes that annotation require other annotation to work properly.
Syntax:
OR:
@Require('AnnOne', 'AnnTwo') // require: AnnOne OR AnnTwo
AND:
@Require('AnnOne') @Require('AnnTwo') // require: AnnOne AND AnnTwo
Combine OR and AND:
@Require('AnnOne', 'AnnTwo') @Require('AnnThree') // require: (AnnOne OR AnnTwo) AND AnnThree
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add
@Require
annotation.This should be placed on annotations definitions, similar like
@Conflicts
.This denotes that annotation require other annotation to work properly.
Syntax:
OR:
AND:
Combine OR and AND:
The text was updated successfully, but these errors were encountered: