codestyle; put javadoc before or after annotation?

I know that it isn’t the most vital of issues, but I just realised that I can put the javadoc comment block before or after the annotation. What would we want to adopt as a coding standard? /** * This is a javadoc comment before the annotation */ @Component public class MyClass { @Autowired /** … Read more

How to attach javadoc or sources to jars in libs folder?

New version of ADT r17 plugin for Eclipse added feature to automatically setup JAR dependencies. Any .jar files in the /libs folder are added to the build configuration now. Unfortunately Android Dependencies classpath container is non modifiable. How can i attach javadoc and sources to the automatically inserted .jar (from /libs folder)? 12 Answers 12

Javadoc link to method in other class

Currently I’m referencing methods in other classes with this Javadoc syntax: @see {@link com.my.package.Class#method()} And in what I understand from the documentation this is the correct way to do this. But now to the funny part, or frustrating. When I generate this javadoc I first of all get following error: warning – Tag @see:illegal character: … Read more