I found a strange annotation:
public static @interface WebResult { }
Why is static there? How do they compile it? My IDE does not allow such modifier there!
The class this is contained in is javax.jws.WebResult.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s valid (but not required) when it’s nested inside another class:
From the Java language specification section 8.5.2:
If you’ve seen it on a top-level class, please show where you’ve found it like that.