As I read from various Java book and tutorials, variables declared in a interface are constants and can\'t be overridden.
I made a simple code to test it
<
The variable you declared in that interface is not visible to the class that implemented it.
If you declare a variable in an static and final, i.e. a constant, THEN it is visible to implementors.