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
2answers
61 views

Variable type in javadoc methods eclipse

Is there a way to have the type of the input variable for methods with javadoc in eclipse? I know you can have as tags the name of the variables like: /* * param1 * param2 */ But I'd like ...
0
votes
0answers
47 views

Error generating android project javadoc using Doclava

I'm trying to generate the documentation of my android project using javadoc & doclava. I downloaded the doclava jar and I'm trying to generate the doc through Project-> generate javadoc. If I ...
5
votes
2answers
44 views

Is there a way to produce Javadoc for a subset of public methods?

I know how to produce Javadoc for a subset of classes/interfaces/packages. But is there a way to produce Javadoc for only a subset of public methods? What I would prefer is to be able to mark methods ...
4
votes
1answer
67 views

How to stop Eclipse formatter to add trailing whitespace

I noticed an odd behavior of the Eclipse formatter (Strg+Alt+F) when running it on a piece of code like this: /** * bar * * @return nothing */ Object foo() { return null; } It will add a ...
0
votes
1answer
44 views

I use Lombok project but getter's and setter's don't have JavaDoc

I use Lombok project but getter's and setter's don't have JavaDoc. How can i activate this option?
0
votes
2answers
49 views

how to explain propose of public class in Javadoc

Hi I was asked to explain the purpose of each public class, public method, and public field in my program, but I do not know what to write it, for example is @param only for methods? Can you give an ...
0
votes
1answer
25 views

Converting Ant javadoc to Maven

I'm converting my ant project to maven and want to add javadocs as well. I've added maven-javadoc-plugin, but I can't find anywere the whole list of its params :(. My ant's javadoc was configured ...
2
votes
1answer
58 views

Understanding method signature

I am trying to understand this method signature: public final <T> FluentIterable<T> transform(Function<? super E,T> function) (taken from ...
0
votes
0answers
19 views

Unicode characters in Javadoc [duplicate]

In my Eclipse project, source files use UTF-8 and I have no problem to use e.g. ε (epsilon) in a Javadoc comment fo a source file. However, when I generate the Javadoc (Project - Generate Javadoc), ...
0
votes
2answers
58 views

What reasons and circumstances should javadoc/phpdoc be chosen over regular comments?

What reasons and circumstances should javadoc/phpdoc be chosen over regular comments? I know what the syntax difference is but why use one or the other. Is it mainly semantic or are there other ...
0
votes
1answer
26 views

Maven I want to attach a file in javadocs or source jar for documentation, but not use it in the executable jar

The file is a Unix shell file, it's used to deploy the jar and dependencies on Unix
0
votes
1answer
20 views

Adding a pre-requisite task to mvn javadoc:javadoc

I would like to run a shell script (to convert markdown to html) before mvn javadoc:javadoc is run. How can I add this shell script as a dependency to the javadoc task?
0
votes
1answer
33 views

Generate API docs with Javadoc

I am writing Javadocs for a project I am working on, and would like to leverage the @link tag to link each endpoint to the javadoc generated for each method. Ideally, I'd like to do something simliar ...
0
votes
1answer
34 views

Add of javadoc file in UIAutomatorTesting

can anyone plz tell me how from where i can find javadoc.jar for UIAutomator testing file so that i can add that to uiautomator.jar.I have searched on the net but i am unable to search javadoc.jar ...
0
votes
0answers
3 views

Documenting the required structure of a compund-type method arguments and return value

For my Java web application, I have implemented my own MVC dispatching mechanism, which is based on JSON AJAX requests. The dispatching mechanism passes the parsed JSON objects from the request the ...
1
vote
1answer
121 views

Maven “Skipping javadoc generation” WHY?

I'm working on a maven project and want to generate the most basic of javadocs. This is the plugin I add to my pom.xml <build> <plugins> <plugin> ...
0
votes
0answers
85 views

Google Drive Quickstart -This element neither has attached source nor attached Javadoc and hence no Javadoc could be found

In MainActivity.java, it says This element neither has attached source nor attached Javadoc and hence no Javadoc could be found, for all the imports below, which are from Drive API. It will not debug ...
0
votes
4answers
61 views

Should we JavaDoc classes extending abstract classes?

Suppose I am writing a class "MyWork" extending the abstract class "Work". Now, assume all methods I need in "MyWork" have already been declared and have had their JavaDoc written in "Work". Should I ...
0
votes
1answer
33 views

Java/NetBeans: Uploading javadoc to FTP-Server

Does NetBeans support an automatic upload of the newest Documentation, whenever I build my application or run the javadoc? Do you know a plugin for that?
1
vote
1answer
62 views

HTML in javadoc comments

Is it a good or bad practice to use HTML in javadoc comments? When I look at the comments of java methods they all look nicely formatted with the name of method at the top followed by the entire ...
0
votes
0answers
41 views

How do I get a custom javadoc tag to appear in the autocomplete javadoc in netbeans?

I've added a custom tag of @modifies in the build section of the properties as follows: -tag modifies:a:"This method modifies: " This only shows up when I click 'generate javadoc' not when I am ...
3
votes
1answer
62 views

Does JavaDoc recognize comments inside methods?

I have written a lot of comments inside my business logic like that: /** * Do some important stuff. * @param pDog * @param pAllDogTraining * @return */ @Overwrite public Map<DogId, Dog> ...
0
votes
2answers
87 views

Java: Code ownership visualization

What are tools to see code ownership in the project? Every Java class have @author in the JavaDoc class comment. So it is possible to count number of lines of every class and summarize in how many ...
0
votes
0answers
10 views

How to generate Google Project Hosting Wiki syntax with javadoc?

I am searching for a Doclet which generates Wiki syntax for Google's Project Hosting. Does anybody know any? Or does anybody know any another practical way to store the HTML generated by Javadoc in a ...
0
votes
0answers
68 views

Can't generate javadoc in eclipse

This really should be a stupid question, but I'm trying to generate javadoc in my Android eclipse project and I'm getting errors. I'm on a mac and the javadoc command is set at ...
0
votes
0answers
114 views

JavaDoc packed as jar does not work in eclipse or netbeans

I am using Netbeans7.3 to develop my application and distribute it building it into a jar. I documented my sources with JavaDocs and I'd also like to distribute these in a separate jar file. Building ...
1
vote
0answers
20 views

Javadoc formatter as pretty as readthedocs/sphinx? [duplicate]

When I think of Java automatic documentation, I think, well, ugly. Not that it's not useful, but I've been spoiled by readthedocs / sphinx. Is there a package that makes your javadocs pretty? ...
0
votes
1answer
46 views

checking tool for spelling and javadoc validation

apologies if the question is a duplicate. Actually I am looking for a automated checking tool to identify: the missing javadoc, incomplete javadoc or missing brief test and identify spelling or ...
2
votes
3answers
95 views

Most simple javadoc documentation for a derived exception regarding checkstyle SUN convention?

I create a lot of exception classes, extending "Exception" and creating all constructors matching the constructors of the superclass "Exception". Eclipse generates this: /** * */ package ...
3
votes
1answer
93 views

Display JavaDocs on GitHub

I'm looking for a way to convert the javadocs from my open source project (generated in Eclipse) to GitHub MarkDown, or come up with some other simple solution to display my documentation on GitHub ...
6
votes
3answers
89 views

How to get a JavaDoc of a method at run time?

Its easy to get a method Name of a Class at run time BUT How i can get a JavaDoc of a method at run time ? As the following example Our Class that include JavaDoc of our target method public ...
1
vote
1answer
56 views

Where can I find the Eclipse Zest API JavaDoc?

On the official Zest Homepage, there is no API JacaDoc. I am wondering, where to find it?
1
vote
2answers
92 views

Netbeans newbie— How to enable viewing info from a javadoc JAR file

I have some JAR files which I have to add to a Java project- for each of those JARs I also have separate JARs that contain Javadoc for each of the jars-- now I want to be able to view information from ...
0
votes
0answers
12 views

javadoc of server library always overwritten

I am using netbeans 7.2 with the javadoc of "Java EE from Glassfish" library pointing to a netbeans zip file. Because this javadoc does not work, I tried to change it to a glassfish api doc folder. ...
0
votes
0answers
49 views

Where are the three Javadoc buttons on mouse hover in Eclipse in Linux?

I'm using Eclipse in Ubuntu Linux 12.04. When the mouse hovers around a class name, Eclipse will pop up a text box showing the Javadoc information of that class. But in Ubuntu, I didn't find the three ...
0
votes
0answers
68 views

How do I generate JDK 7 api docs as HTML tables rather than CSS for display in emacs-w3m

JDK 6 api javadocs use HTML tables for layout. These tables display nicely in emacs-w3m, which means I can browse api docs without leaving the emacs. JDK 7 api javadocs use CSS for layout. This ...
0
votes
0answers
19 views

How to link to all class constants in JavaDoc

I frequently feel like I want to reference @see Class#{all_constants} , in JavaDoc. Is there any way to do that ? For example, what if i want to provide a reference to the possible values for a ...
3
votes
1answer
36 views

Is Javadoc the right way to tell a user of a security issue? [closed]

I'm trying to answer this question and I believe the Javadoc would solve the problem: You have found that a method in one of your (otherwise excellent) classes has a security problem and you want to ...
0
votes
0answers
44 views

About the task classes [closed]

I just not really understand, do I need to create BookTest(test class) class, Book Class(information about the book) and Author Class(information about the author) or I need to make only test class ...
1
vote
0answers
40 views

JavaDoc Parser for common javadocs?

Is there a somethign I can use to parse JavaDoc, such that I can operate on it through the standard Doclet interfaces at runtime? ...
0
votes
2answers
72 views

Eclipse: edit javadoc generator [duplicate]

I know that Alt+Shift+J creates auto-generated javadoc, but can I change pattern of that generator, are there any kind of settings?
0
votes
2answers
111 views

How can I compile and run my Custom Doclet class in my project?

I'm trying to dump all class javadoc comment (preferabbly subclasses of a libraries WebPage class) at compile time into a .properties file in the format classname=comment. So far I have: created ...
3
votes
3answers
98 views

Create a single jar that will contain compiled classes and javadoc with Maven

I'm trying to generate a jar file that will contain an API SDK for our product, so our customers can create plugins and compile it against our API. All classes/interfaces that we provide as part of ...
1
vote
1answer
17 views

Javadocs getting added everywhere

I use Javadocs to add descriptions to my methods. In Eclipse I just place the mouse over the method name and click on the Add Javadoc menu. Sometimes though I notice it adds a bunch of empty comments ...
1
vote
1answer
65 views

Method listed twice in JavaDoc

I have two classes and two interfaces. InterfaceA package ch.sukha.testmachine.client; interface InterfaceA { /** * Foo. */ void foo(); } is the super interface of InterfaceB. ...
0
votes
1answer
46 views

How to link JavaDoc to different class?

I'm trying to write a javadoc which displays the javadoc from another method, like: private List<Object> list; /** * {@link list#indexOf(Object)} */ int getMyIndex(Object o) { return ...
2
votes
1answer
44 views

importing LWJGL source

I have imported the compiled jars for lwjgl, but how do I import the source for them so I may view the source if I please? Also, how would I import the javadoc for it? This was simple in Netbeans, ...
0
votes
0answers
18 views

Get folders list within a folder?

I am trying to list the folders.I don't want to get all folders list in single API call. Is there any API available to get folders list in a particular folder?
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
53 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 2 3 4 5 24