I have one annotation and one object.
com.example.model.shared.MyAnnotation
com.example.model.shared.MyObject
MyObject is declared with MyAnnotation:
@MyAnnotation
public class MyObject {
...
}
When I compile, I am getting this warning
[java] Resolving com.example.model.shared.MyObject
[java] Found type 'com.example.model.shared.MyObject'
[java] [WARN] Ignoring unresolvable annotation type
com.example.model.shared.MyAnnotation
The compilation still succeeded, but I wonder what side effects are
there? How do I resolve this warning?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.