| Author |
annotation
|
Sergio Gazzini
Greenhorn
Joined: May 29, 2011
Posts: 12
|
|
In docs:
"The common interface extended by all annotation types. Note that an interface that manually extends this one does not define an annotation type. Also note that this interface does not itself define an annotation type."
But what means "manually extends"?
Which another way to extend interface?
Thanks.
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12926
|
|
It means that if you write code like this:
in other words, you create an interface that explicitly extends Annotation, then MyAnnotationButNotReally is not an annotation.
You create annotations using @interface instead:
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: annotation
|
|
|