0
votes
2answers
48 views

Iterate complex custom annotation array

I have created a nested custom annotation. My code is here @StatusCode(statusArray = { @StatusCodesArray(key="200", value="value is ok"), @StatusCodesArray(key="400", ...
0
votes
0answers
63 views

Getting Javadoc generation to include annotation-specific formatting in the summary table

I'm using something similar to Guava's @Beta annotation to mark interfaces/classes/methods as not-ready-for-release (and I have an @Alpha annotation too). Is there a way to get this to do something ...
1
vote
0answers
89 views

Eclipse behaves weird when generating javadoc comments for methods having annotations specified

I have an EJB project where I am adding JavaDOC comments for every method now it was not done earlier during development and I am doing it now. The problem that I am facing is related to getting those ...
1
vote
2answers
109 views

Should JavaDoc go before or after a method-level annotation?

What is the recommended place to put JavaDoc for a method with an annotation? Before or after the annotation? @Test /** * My doc */ public void testMyTest(){ } OR /** * My doc */ @Test ...
1
vote
0answers
96 views

custom java annotations ind javadoc / doxygen

i have build a custom annotation like package com.uc4.ucdf.control.xgui; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; ...
1
vote
1answer
644 views

how java function description works in eclipse code suggestion

When we are using eclipse , it gives suggestions for our java code and shows description i.e a small pop over showing description about the function . Suppose i am creating a java library and i need ...
4
votes
1answer
1k views

Javadoc displaying value on an inner class constant using @value

I have an inner class which declares a constant and want to display its value in Javadoc of the enclosing top-level class using the @value annotation. For example: /** * {@value #FOO_CONS} // this ...
0
votes
1answer
133 views

What is the non-deprecated replacement for @scr.property nameRef?

I am replacing some deprecated Javadoc annotation in code I am unfamiliar with. Most javadoc annotations easily translate to org.apache.felix.scr.annotations, but I'm not sure how to translate this ...
5
votes
2answers
1k views

Java - Convention for using javadoc along with a method annotation?

I have the following method: @Override public boolean myMethod() { // do stuff } If I want to add a javadoc for this method, is there any convention on how to do this along with ...
0
votes
1answer
133 views

Is it possible to show the annotations of method parameters in Eclipse?

We use the annotations @javax.annotation.Nullable and @javax.annotation.Nonnull to document the behavior of method parameters. Is it possible to show this annotations in the JavaDoc popup in ...
0
votes
0answers
445 views

Javadoc generation in Eclipse generates error

I have a project that compiles well and is running properly. But, when I try to generate the javadoc from eclipse, it returns me following kinds of error: (use -source 5 or higher to enable generics) ...
3
votes
2answers
805 views

What's the best way to handle/format Javadoc and annotations in code?

I've looked across this forum, and I've googled this one, and I'm not sure what is the best way to handle Javadoc and annotations that appear together in the same class. From what I can see from ...
1
vote
1answer
257 views

Using Annotations Like Marker Interfaces For Javadoc

I have some conceptually related classes and want to mark them with annotations so that I can see list of these classes in javadoc. For example, MyAPI supplies some state variables: /** * Marker ...
0
votes
0answers
155 views

Scaladoc gives me error with Annotations (Webservice)

Working with jax-WS in scala. I have this code for webservice: import javax.jws.soap.SOAPBinding import javax.jws.{WebParam, WebMethod, WebService} import javax.xml.ws.Endpoint ...
24
votes
3answers
4k views

Should I use JavaDoc deprecation or the annotation in Java?

There are at the moment, two ways to mark code as depreacted in java. Via JavaDoc /* * @deprecated */ Or as an annotation: @Deprecated This is my problem - I find it a bit too much to declare ...
0
votes
1answer
596 views

How to see javadoc for annotations in Android SDK?

In "Documentation for Android SDK, API 8", the javadoc for class android.test.InstrumentationTestRunner mentions command-line options for "small", "medium", and "large" tests without explaining how ...
3
votes
1answer
204 views

Documenting use of EJB3 annotations within a code base

We have a large code base and I want to generate specific reports on the usage of EJB3 annotations within the code base. The simplest use case is to generate a HTML/PDF report with details of all ...
17
votes
3answers
2k views

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? /** * ...
1
vote
2answers
503 views

Use annotation to specify which classes/interfaces should be generate javadoc?

I have a java program and want to generate javadoc for classes/interfaces. However, I just want to generate javadoc for a certain classes and interfaces. I just want to know if there is any way that I ...
2
votes
4answers
163 views

Selective API Javadocs

I have what must surely be a fairly common documentation need... I'm implementing a rather sizable Java library code base that has, among other things, various classes intended to be exposed to a ...
2
votes
1answer
1k views

How to get Eclipse to show Javadoc for javax annotations

I really like the way Eclipse has pop-up Javadoc documentation for the various Java library classes I use. However, I also use JPA and JAXB annotations such as @Entity and @XMLType. Eclipse ...
4
votes
4answers
753 views

Annotation to disable JavaDocs

Is there an annotation to declare that a certain method will not be included in the JavaDocs even though it is public? Something like: @nojavadocs public void foo(){ //... } P.S. I understand ...
2
votes
2answers
880 views

Annotations complement javadoc tags

Why is it said that Annotations complement javadoc tags?
2
votes
1answer
631 views

How can you reference an annotation in a Javadoc?

How can you reference an annotation as a code snippet properly in Javadoc? For example: <code> @Annotation public String field = ""; </code> The @Annotation gets treated as an ...
8
votes
1answer
1k views

Is there a way to get the javadoc tool to document annotations?

In my project, we use a number of annotations that would be very useful to see in the javadoc API documentation. Does anyone know a simple way to include annotations in generated javadocs? I don't ...
1
vote
2answers
998 views

Force javadoc to ignore an annotation

I'm trying to document an annotated interface and include a sample of how it's used in the javadoc. e.g. /** * Here's an example usage: * * <PRE> * @IFaceAnnotation(value="") * public ...
5
votes
1answer
338 views

Accessing Java annotations from a Taglet

I'm working on a project where we have some custom Taglet classes that are used to modify the Javadocs (such as linking to source code in SVN, adding citations) and so on.One of the things we'd like ...