Javadoc is an extensible documentation generation system which reads specially formatted comments in Java source code and generates compiled documentation. It is typically used to produce API documentation in the form of HTML web pages.

learn more… | top users | synonyms (1)

0
votes
0answers
29 views

Automatically use instance variable javadoc for getters/setters? [duplicate]

Imagine I have a Line class drawing some line. I internally store the line width, there are also getters/setters for this instance variable, which are however pretty self explanatory once you know ...
0
votes
1answer
54 views

How can I get the Javadoc class descriptions at compile time?

I'm trying to build up some documentation for my Wicket Web Application. I have created a page to grab all of my mounted pages and display them in /sitemap.xml. In the vein of documentation I've added ...
1
vote
2answers
55 views

Best practices for documenting exception which caused by unknown arguments

This is more of a best practices question. I hope that it's okay to ask this question here. I am creating an interface that will be used as part of our API. I have a method called getSomeObject() ...
1
vote
1answer
62 views

Generating Custom JavaDoc In Antlr 3

I am implemented a grammar language in Antlr 3 for my company. Currently, when the code is generated there is no comments. I would like to code comments so that the custom comments appear. For ...
0
votes
1answer
142 views

Skip Dependencies in javadocs - Maven javadoc stuck because of invalid repository URL

My Maven POM uses <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> ...
2
votes
2answers
233 views

Java LinkedList - differences between retrieve operations

Are there any differences between different methods in each of the following groups of element retrieve operations in LinkedList? Returning null + removing operations: poll(), pollFirst(). Returning ...
7
votes
3answers
90 views

Why is inheritedDoc not defined on constructors?

I was wondering if there is any valid reason why javadoc does not support inheritedDoc on constructors. Suppose I have class A { /** * Constructor of A */ A(){} /** * Does something */ ...
0
votes
0answers
23 views

Need to run doclet for many classes

I've a doclet that I need to run it for many classes/packages and I need to run it from the doclet itself. public static void main (String[] args) throws IOException{ ...
11
votes
2answers
250 views

How do I set the Java Doc for google drive api for android in Eclipse

I am using the google drive api for android in eclipse, how do I link the documentation so that when I hover over something, I can view the java doc for it.
0
votes
2answers
189 views

What is a good way to document Java code? [closed]

Currently we have several documentation sources in our project. Design docs, which provide a high-level description of the system and all the key decisions. Wiki, which includes a "For Developers" ...
0
votes
1answer
71 views

Justification for using <code> tags for class names and keywords in Javadocs?

In its style guide, Oracle suggests to use the <code> tags in Javadocs the following cases: Java keywords package names class names method names interface names field names argument names ...
1
vote
2answers
110 views

How to link javadoc to private field? [duplicate]

how can I make a javadoc link to a private field? class Foo { private String bar; public String getBar() { return bar; } } {@link Foo#getBar()} works. {@link Foo#bar} doesn't.
1
vote
1answer
37 views

Adding javadoc in existing library

I it possible to adding java comment of pre compile library jar file? I am currently experimenting with lwgjl but it lacks of documenting opengl function. I would like to adding comments on functions ...
1
vote
1answer
182 views

Javadoc generation for Android

I am trying to generate my documentation for my android project with javadoc. The problem is that javadoc isn't able to find the android package. My error is the same as this one. If I am trying the ...
0
votes
0answers
31 views

Easier way to view javadocs

I want to keep sending my index.html file for someone to look at some generated javadocs. i don't want to keep sending all the associated files AND folders (i.e. actions, class-use + ALL HTML files, ...
0
votes
1answer
60 views

Javadoc generation doesn't allows Parameters at JComboBox

I am trying to generate my javadoc with the following variable: private JComboBox<String> monthsBox; My problem is that javadoc brings up the following error: type javax.swing.JComboBox ...
0
votes
0answers
20 views

Attach Javadoc to Library in Force IDE

I am trying to use salesforce.com. So I downloaded eclipse HElios and then downloaded the force.com IDE plugin. Once I created a Force.com porject I am not able to attach a javadoc to it. Even the ...
1
vote
0answers
73 views

JSF composite component documentation

When using any of the standard components in JSF, for example: <h:panelGroup>, I get to see the description of the component as soon as I start typing it. Having created a number of different ...
0
votes
1answer
76 views

How do I comment object literals in YUIDoc

In YUIDoc, I want to comment object literals that are passed as parameters. See the following snippet of code: @param {Array} colDefs Array of object literal column definitions for the ...
0
votes
1answer
109 views

Netbeans, How to modify generated javadoc?

In Netbeans when you type /** above a method it generates a javadoc stub: /** * * @param * @return */ How do you modify the generated text? I would like a custom javadoc ...
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
1answer
55 views

In Eclipse with m2e, how to get “Quick Javadoc” (F2) to display for Maven dependencies?

In Eclipse (Indigo), with the m2e plugin, I would like to be able to F2 on a method name from a 3rd party dependency (i.e. one that I do not have the source for), and view the Javadoc. For example, ...
5
votes
2answers
68 views

How to deal with JavaDoc comment repetition?

I was wondering what the best way of documenting this potential Point class is: public class Point { /* the X coordinate of this point */ private int x; /* the Y coordinate of this point ...
0
votes
0answers
35 views

Generate Android project's javadoc while skipping Android API references

I'm generating the javadoc for my project. However, the process terminates whenever it encounters a error: cannot find symbol and a error: package android.util does not exist whenever it comes up with ...
0
votes
1answer
37 views

Retrieving a java element's javadoc url in Eclipse

Is there an API method in Eclipse to retrieve the URL for the Javadoc of an element? I noticed that org.eclipse.jdt.ui.JavaUI appears to have a static function that accomplishes just that. You feed ...
0
votes
1answer
53 views

Main.execute in the doclet throws an error saying file not found

I have a doclet that prints the class data. I run the file from command line and it works fine. But, I want to run it within a java program also. So, I used the below main method in my doclet: public ...
1
vote
1answer
160 views

APIs not getting hidden even after using the annotation @hide in Android

I am writing my own SDK on android and as such creating my own jar. Now I create documentation of my SDK using droiddoc tool. In my framework files(.java), there are many APIs that I have marked with ...
1
vote
4answers
182 views

<tt> vs <code> elements when writing Java docs

To represent keywords while writing Java Docs should I use the <code> element or the <tt> element? Are there specific situations when one should be preferred over the other?
0
votes
0answers
14 views

What is a good license for a Maven Archetype?

I am currently preparing some Maven Archetypes to demonstrate the use of an Open Source Software project (that project is covered by an OSS license, but that's not the point here). When using the ...
1
vote
0answers
108 views

How do I run a doclet in eclipse

Referring to the examples given in the post : http://www.javaworld.com/jw-08-2000/jw-0818-javadoc.html#resources Examples in the post : SimpleDoclet and SimpleOrder I need to know where do I need to ...
1
vote
1answer
224 views

Maven: How do I exclude specific source files from javadoc?

I need to exclude specific source files (NOT just packages) from Javadoc using Maven. The <excludePackageNames> setting will not work for me: it only allows you to exclude certain packages. ...
0
votes
1answer
105 views

Maven: Need to copy images into Javadoc, LICENSE/NOTICE files into META-INF

I've been trying to accomplish two things that I figured would be pretty trivial with Maven (I'm using 3.0.3 and the latest versions of all the plugins), but no matter what I do I can't seem to make ...
0
votes
1answer
101 views

Error in using generate javadoc for android project in eclipse

I have tried many solution available but unable to create javadoc for my android project. checked out the following: solution 1 solution 2 but i got the following error Building tree for all the ...
1
vote
0answers
87 views

Need help to integrate a particular vendor's Javadoc to Eclipse

I'm working on big Java enterpriseware (MatrixOne / ENOVIA V6, if you mind). The maintainers provide some kind of Javadoc, which looks like very vanilla Javadoc, and I can read it as HTML in my ...
1
vote
1answer
45 views

Doc reference warning for java docs

The following is a Java Doc for one of my methods . But JDeveloper is giving a warning message for the @see section /** * Clears the selections on all the tables containig view sub types ...
2
votes
1answer
121 views

Eclipse Javadoc not rendering correctly

I'm currently trying to set up my working environment in Ubuntu 12.10, and I'm currently lost with the styling of Javadoc in Eclipse. The tooltips, and the Javadoc shown in the Javadoc perspective are ...
7
votes
3answers
150 views

How to use auto completion in Eclipse adding fully qualified name

How can I use auto completion in Eclipse adding fully qualified name? In order to avoid sonar/checkstyle (Unused Imports) issues, we've got the policy to use the fully qualified name in Javadoc. ...
0
votes
0answers
47 views

How can I access (or install) the javadoc for Mojarra in Netbeans v7.2?

I am developing a JSF (Mojarra) v2.1.11 project in Netbeans 7.2. I am using Maven (rather than ant) as a build framework. In the IDE, the "quick reference" feature will show a given method ...
2
votes
1answer
98 views

Javadoc methods of a protected class

I have a protected class that is extended by a public class. The protected class contains a number of public methods. When Javadoc is generated for public visibility, the inherited methods do not ...
2
votes
1answer
167 views

Javadoc inheriting parent constructors documentation

Consider that I am extending a class such as: public class MyComboBox<T> extends JComboBox<T> { public MyComboBox() { super(); } public ...
1
vote
1answer
68 views

How do I add SteelSeries javadoc in Netbeans?

I am having trouble getting the steelseries javadoc to work in Netbeans. This is the URL https://dl-web.dropbox.com/u/84552/SteelSeries3/apidocs/index.html but I cannot seem to get it to play ball. ...
2
votes
2answers
236 views

Netbeans 7.2.1 mac javadoc not found Java Me

For some reason Netbeans can't access javadoc in Java ME projects. Netbeans does find javadoc in Java Desktop Application Attached an image of my Java ME javadoc. Thanks!
1
vote
4answers
108 views

What is the purpose of the '#' in javadocs '{@link #method}'?

What is the purpose of the hash '#' in the javadoc link tag? /** Call {@link #method} to do foo. */
1
vote
1answer
78 views

Internal Source Code Documentation - FiM++

The structure of a FiM++ program requires that it end with the closing of a letter and the code author's name in a specific manner. Dear Princess Celestia and Stack Exchange and String: A Sample: ...
0
votes
0answers
61 views

Android JavaDoc - XML attributes

Hello all, I made a custom component (that extends LinearLayout ) and I commented its functionality (methods, attributes, ...) using JavaDoc (I am using Eclipse IDE). I sucessfully generated its ...
1
vote
2answers
62 views

Best way to set alternate JavaDoc location for all modules?

I'd like to set an alternate JavaDoc location for all my modules in a multi-module maven project. Unfortunately, I have to rely on relative paths, or else use maven properties like ${basedir}, since ...
0
votes
1answer
63 views

how to populate class summary field on package information page (package-info.java)?

I have created a javadoc using eclipse and the package information is contained in package-info.java. my problem is in the class summary field the name of the class is mentioned but there is no ...
0
votes
2answers
97 views

Alternate Output Directory for JavaDoc

I'm trying to configure an alternate output location for the JavaDocs in my multi-module maven project. I configured the maven-javadoc in the parent POM to look like this: <build> ... ...
1
vote
0answers
27 views

Linked javadocs across multiple code repos

I have a application whose various components are spread across about 100 git repos. They are all standalone maven projects (they have dependencies among themselves, of course), and I create a .war by ...
2
votes
1answer
156 views

JavaDoc giving fully-qualified class name… how to abbreviate?

Problem I'm running mvn javadoc:javadoc to generate JavaDoc, and I am pleased with the results, except for one thing: it gives the fully qualified class names for any class coming from a third-party ...

1 2 3 4 5 24