I am new with annotated interface:
@interface Test{
public String getInfo()default "hi";
}
@test
class TestImpl implements Test
{
public String getInfo(){return getInfo();}
public static void main(String...args)
{
TestImpl impl=new TestImpl ();
impl.getInfo();
}
}
Actually i am totally confused with this, i want to print the default value of my getInfo() methods. and don't know how to use it and also the advantages of the annotated interface.
if some buddy have idea about it plz make changes of my above code as printable format of default values and also if it pausible then give me the url from where i can read more about annotated interface.
Thanks, Subodh Ray
