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
1answer
33 views

Do I include Javadoc in Netbeans Zipped or Unzipped?

In Netbeans | Tools | Java Platforms, I included the javafx-apidocs as zip file. then I wanted to check the javadoc in Google Chrome. I opened the link from within Netbeans. The URL looks like this : ...
0
votes
1answer
40 views

Is there a way to tell eclipse to ignore warnings from specific code folders?

This is a longshot question, so bear with me. :) I like to have my code warning free so that I can quickly determine if I have a warning that truly needs to be dealt with. I have it set that if ...
1
vote
1answer
207 views

NetBeans can't generate Java Doc?

I don't know why, but it's been a problem for quite some time now. I can't seem to generate Java Doc for most of my applications using NetBeans 7.2 (had the same problem with 7.1). I simply can't ...
0
votes
1answer
38 views

javadoc @global or @memberAttribute

Javadoc is friendly easy-to-self-document utility. It has many straight forward tags such as: @param @return @throws. However, I don't see a way to document access to "global" or "member ...
0
votes
3answers
86 views

Possible bug in java.util.Set API [closed]

java.util.Set API states: sets contain no pair of elements e1 and e2 such that e1.equals(e2) But as far as I understand TreeSet uses Comparable/Comparator to determine if e1 and e2 are ...
1
vote
1answer
88 views

Can't get overview.html into javadoc with gradle

Using the latest gradle, I am trying to get the standard overview.html to appear in the javadocs for my project. I have tried several different methods of configuration with no luck. Here's the ...
1
vote
2answers
103 views

javadoc seems to treat class name in .aj file as package name

I'm generating Javadoc for a library that is mainly plain Java, but because one class is generated and I need to add a method to that class (and I can't use inheritance for this), I've created an ...
2
votes
1answer
73 views

How can I generate JavaDoc without frames?

I currently have some Source and Javadoc on GitHub. As you might know, it is not possible to view the (rendered) HTML-pages on GitHub. But solutions exist for this problem. Just a day ago, this ...
0
votes
1answer
84 views

Can I license my programs under a pseudonym? [closed]

I usually publish all my software using the MIT license, and I usually state my real name in the license. However, can I publish it under, for example, "Bane"? And what about the @author tag in my ...
0
votes
1answer
48 views

JavDoc-like Tool for Crossreferencing Callers of Methods in Java?

Is there a tool like JavaDoc that would also list, for each method, from where that method is called (if it can be known for sure) or from where it could potentially be called? Obviously this cannot ...
1
vote
1answer
124 views

sourceFileExcludes tag in the maven-javadoc-plugin

Does anyone has an example how to use sourceFileExcludes tag in the maven-javadoc-plugin? I cannot make it work. like: <sourceFileExcludes> ...
2
votes
3answers
134 views

String content in javadoc

I was wondering, is it possible to generate javadoc for public String constants to generate javadoc which contains its content? E.g. For field: public static final String MENU = "menu_2"; it would ...
0
votes
1answer
117 views

Do I really need JavaDoc/Comments for every part of my code? [closed]

I'm writing a Java Application for my final year CS undergrad project at uni. In the previous years we have been told that using CheckStyle for our code is a MUST. However, I'm finding that using the ...
3
votes
1answer
49 views

Changing the access options when compiling JavaDoc using ant

I want JavaDoc to render all members of classes that aren't public. So a previous SO question tells me I need to change the access options: ...
0
votes
2answers
25 views

is it right documentation of method documentation of java?

is it right documentation of method documentation of java? my part of code is below. there is no parameter but have returns. only local variables. /** *This method prompts user to enter the how ...
0
votes
0answers
36 views

Assign Sources and Javadocs to EJB Projects

After I've created a new EJB Project with Eclipse Juno, there are no source attachments or javadocs assigned to my project (see the attached screenshot Missing Libraries for JBoss 5.0 Library if you ...
1
vote
2answers
62 views

How to hide all javadoc (phpdoc) blocks in Eclipse IDE?

I want to hide all phpdoc information. When I click to "-" as shown in the image below I can hide but I have to do it for each phpdoc block. Is there a way to hide all phpdoc information.
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 ...
4
votes
3answers
418 views

Overriding Javadoc comment on java.lang.Enum.values()

I have a very specific problem about the method java.lang.Enum.values(). I would like to override its javadoc. Very precisely, the current javadoc for this is, after I created my own enum: public ...
0
votes
0answers
47 views

How to add MarteEngine Javadoc to netbeans

Here's the problem I've added the marte engine JavaDoc to Netbeans and it works perfectly, but I can't find the Java doc associated with it anywhere but this web page I have no idea how to add this to ...
1
vote
1answer
268 views

Details of difference between @see and @inheritDoc

I have looked over JavaDoc reference, and while I understand basic difference between @see (various links) and @inheritDoc (export of superclass JavaDoc comment), I need clarification on how things ...
0
votes
1answer
191 views

Javadoc not creating documentation for a class extending another class?

I have made a program that consist of a few classes a class that extends however one class doesn't produce any JavaDoc or appear in the program tree. It is declared like this: class myClass extends ...
0
votes
1answer
83 views

Where can I specify my javadoc document charset?

I'm writing javadoc in Polish language and I want to define UTF-8 charset for my javadoc documentation generated by eclipse - how and where can I do that?
-1
votes
1answer
201 views

How to convert my project javadoc to pdf?

I have documented my project using javadoc. Now I need to convert it to one pdf. I had already tried pdfDoclet here & Auriga doclet here. I was unable to convert it to pdf because I am unable to ...
1
vote
1answer
27 views

Java docs that include classes based on inheritance

Note that I have written "Java docs", as I'm not necessarily expecting the javadoc utility to acheive what I'm after (let alone the maven-javadoc-plugin I'm using). I need to produce a doc site that ...
0
votes
3answers
46 views

Official javadoc for Sitebricks (0.8.6)

Where can I find the official Javadoc for Sitebricks (in my case, version 0.8.6)? There is nothing on neither the Google Code Page nor on Sitebricks.org. The closest thing I could find was on Jarvana ...
3
votes
1answer
145 views

Configuring Javadoc aggregation in Maven

I'm trying to create an aggregate Javadoc site for all the modules in my project, but I can't seem to configure the plugin in a way that is satisfactory. Mainly, I can't seem to get it to aggregate ...
0
votes
2answers
65 views

How do I fix Javadoc that no longer autofills/autocompletes?

When you type /** and Enter above a method in Eclipse, it will generate the Javadoc, for example: /** * Finds a World using a String, greets the World, * and then returns a reference to the World. ...
0
votes
0answers
48 views

What is the command-line input to produce the javadoc? [closed]

After writing all the comments inside the code about the javadoc such as /** * This method compares the student's answer to the standard answer * @param ans The student's answer * @return True for ...
1
vote
1answer
425 views

Eclipse JavaDoc Generation fails with IllegalArgumentException?

When I attempt to export or generate a javadoc for any of my javadoc commented classes I was always getting an error, until recently where it has just been generating entirely empty html files. This ...
0
votes
2answers
873 views

Name 'flight_Num' must match pattern '^[a-z][a-zA-Z0-9]*$'

I keep getting this error when I run checkstyle on my program: NonRefundable.java:20:28: Name 'flight_Num' must match pattern '^[a-z][a-zA-Z0-9]*$'. I'm not sure what I need to do to correct ...
2
votes
1answer
128 views

generate Doc for android app in eclipse

hi i m trying to create java doc of my app, i done all comment in java file but when i generate a doc from eclipse(select project->Project->Generate JavaDoc..) the Doc is generate properly but some ...
1
vote
1answer
190 views

Where can I download the Javadocs for the Eclipse plugin developement SDK

I am working on an Eclipse plugin development. Where can I download the Javadocs for the Eclipse plugin development API? I am able to refer them online here, but I want to download them for offline ...
1
vote
1answer
185 views

Automatic Javadoc for android project on build

I want to enable automatic Javadoc generation for a library project on each build. I have 3 issues to tackle: How to integrate such an automated script in IDE's build process ? (Eclipse and IDEA). ...
0
votes
2answers
91 views

Java documentation search engine at chrome

I'm trying to add custom search engine to chrome omnibox, one of these which I wanted was Java Documentation. I failed and I have no more ideas how to solve it. The search engine that I want to use: ...
0
votes
1answer
83 views

Why can't I generate javadoc for this specific project? No error message

I'm trying to generate some javadoc for some of my projects. The comments etc. is inside already, but when I click on "Project -> Generate Javadoc -> ..." in eclipse the javadoc simply doesn't get ...
2
votes
1answer
78 views

Java doc template

I'm trying to put Java comments and I have used for that Java doc tamplate and STS tool : In STS I'm using that configuration in Java doc tamplate:- /** * Description: * Name of Project: ...
0
votes
0answers
22 views

javadoc ecplise

The generated index.html page for my java project through eclipse contains all the packages and their subpackaging. I'm looking for something to display only the first level of packaging using a tag ...
2
votes
2answers
72 views

Creating Javadoc HTML pages that use a favicon

I want to include an element in the <head> of my generated Javadoc HTML: <link rel="shortcut icon" href="my-project-icon.ico" /> Note that I'm using an Ant task to generate the Javadoc. ...
1
vote
1answer
175 views

Javadoc formatting broken since upgrading to Java 7

Since upgrading my project to Java 7, the generated documentation now has broken formatting. How to fix this?
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; ...
5
votes
1answer
266 views

Why do my generated Javadocs look terrible?

I'm trying to generate the Javadoc HTML files for my project. I'm generating them via the Maven Javadoc plugin (maven-javadoc-plugin). I am using Maven 2.2.1. Everything generates such that all the ...
0
votes
1answer
93 views

Eclipse javadoc configuration (for own project)

We can configure a library's (jar) javadoc in a Project in Eclipse by: - Opening the Preferences window - Select the Java Build Path (menu) - Open the Libraries tab - Select a jar and ...
3
votes
2answers
121 views

Javadoc API: How far are varargs supported?

I want to write my custom doclet. I don't want to read some existing javadoc that is made with the standard doclet. I am having problems to figure out how I can query the Javadoc API whether a formal ...
2
votes
2answers
365 views

How to extract JavaDoc comments from the source files

How do I extract the JavaDoc comments from the Java source files ? as well as format them as I want to?
1
vote
2answers
81 views

How to write Javadoc for EJBs and their interfaces?

Consider the following example @Remote public interface RegistrationService { public String register(); public void unregister(String id); public void heartbeat(String id); } @Stateless ...
2
votes
0answers
92 views

Hide subclasses in UMLGraph class diagram

I'm trying to hide subclasses from a class diagram using UMLGraph (via the JavaDoc doclet). There are too many subclasses to make this useful with all subclasses in the diagram. I've tried to add ...
2
votes
1answer
126 views

Generating single page HTML JavaDoc

I want to generate a single HTML file from all Java source files of a project. Generally, JavaDoc generates multiple HTML pages linked together, but I want to have everything in one page. Is that ...
0
votes
1answer
398 views

maven site plugin cannot find my javadoc

This error is driving me crazy in eclipse indigo [ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.0:site (default-site) on project Cdss-camel: Error during page generation: ...
2
votes
0answers
109 views

Custom javadoc tags in Netbeans?

I'm trying to use custom javadoc tags in a Netbeans project. I've added the javadoc command line options to the project settings and the tags work fine when I actually generate the javadoc, but for ...

1 3 4 5 6 7 24