just started learning android/java and i noticed many appearances of '@' in the code. @Override
i can find using google, but the rest of it is a mystery.
Eg while using ButterKnife library we declare variables like this:
@BindView(R.id.note1) TextView importantNote;
Does '@' have any special functionality, or is it just a regular part of method BindView() name? Since I couldnt find anything specific about '@', I came up with an idea it could be some kind of convention. Am I right? If so, what is the convention?