> No, Java uses the same syntax with annotation inside comments.
Mostly incorrect, these are javadoc annotations which usually aren't used by code (aside from the javadoc extraction tool that is, and sometimes code editors for the @deprecated javadoc tag)
Since java 5, java has notations as language syntax e.g.
/**
* Some javadoc comment
*/
@Annotation
public void someMethod() {
// stuff
}