0
votes
0answers
15 views

Not able to generate javadoc for Enum using XJC

I have a Enum defined in an XSD as : <xs:simpleType name="TestEnum"> <xs:restriction base="xs:string"> <xs:enumeration value="Value1"/> <xs:enumeration ...
0
votes
1answer
17 views

how to copy javadoc from variables to constructor

I am having some problems with Javadoc. I have written documentation for variables of a class. And then I want to use that same javaDoc in the constructor. I didn't seem to be able to use @link or ...
0
votes
1answer
41 views

How to convert javadoc to excel

How to convert javadoc to excel. I use eclipse. I want to get a excel's javadoc. please tell how to do. I can get javadoc in HTML way. Is there any way to excel?
0
votes
0answers
16 views

How to make javadoc available outside the doc-folder?

So I'm quite new at this. I've created a small Android app (which is working fine) for a school project, and I'm required to hand in the documentation. I'm using Ant to generate the javadoc which ...
0
votes
1answer
9 views

Import an opensource libray and include its javadoc with RCP

I've scoured the web (or it seems that way at least) with little success on how to important an open source library into the rcp framework so that I have the java doc for each method and class. What ...
1
vote
0answers
35 views

Javadoc “ı” “i” issue

I'm from Turkey and I try to generate Javadoc files. But when I do, the i's in the file written as "ı". Some Turkish letter. Do you know any way to solve this issue? i.e: " tıtle> Uses of Class ...
-3
votes
1answer
40 views

Java: Javadoc & code printing tool [closed]

I need a tool to print the Java code, including the documentation from the source files. I could obviously just print the code from my editor, but I would like something that interprets the Javadoc ...
0
votes
0answers
43 views

Javadoc in eclipse

When I try to generate javadoc for my project it looks like Eclipse is not aware of any java class. I get bunch of errors like: error: cannot find symbol public View getView(int position, View ...
0
votes
1answer
44 views

Is there any way to integrate javadoc into TestNG reports

Could someone please let me know whether there is a way to integrate the javadoc of a test method into TestNG reports? I have googled this topic and searched around here as well, but not much useful ...
2
votes
1answer
28 views

Multiple Custom Tags in Javadoc Displayed Separately?

When building our documentation, we've decided to use some custom tags to add details at a class level, leveraging Ant tasks for the build. Here's a sample of the ant task target: <target ...
0
votes
1answer
41 views

Remove autogenerated Javadoc comment eclipse

Is there any way to remove the annoying "@Javadoc" comments that eclipse generates with every new class? I tried to remove it in the preferences but i dont get it
0
votes
1answer
50 views

Javadoc comment not working [closed]

for some reason the @param method in my javadoc comment is not doing anything and I can't figure out why here is the comment. ...
0
votes
1answer
37 views

Where are JavaDocs generated by Gradle if default is not set?

I am running the Gradle Javadoc task (through java plugin) but I cannot find the output. In the gradle documnetation it states that the default destination directory is ${project.docsDir}/javadoc, ...
4
votes
2answers
44 views

(Eclipse - OS X) How do you copy from javadoc popups?

Coming from Windows, when I use Eclipse and mouse over a class / method / variable that has a javadoc - a javadoc window pops up (or alternatively you can hit F2). Eclipse on Mac OS X 10.8.2 has the ...
2
votes
6answers
40 views

Compile error getting class with getClass()

I'm learning about getClass and how it works. I read that: http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html but i don't really understand why that fails: boolean b; Class c = ...
0
votes
1answer
20 views

no variables in the documentation for class

I've got simple class import java.io.PrintStream; /** * Calculate roots of polynom ax^2 + bx + c = 0 * @author XXXX aka XXX * @version 1.0 17.04.2013 */ public class Lab1_1 { /** * quadratic ...
0
votes
2answers
40 views

How can I modify Javadoc to hide specific classes

I would like to get a javadoc which include documentation of all my classes out of one class. I don't want this class to be private - and then to make th javadoc over public classes only - but would ...
0
votes
1answer
40 views

How to choose the directory where i want to save the Java documentation?

I'm working with jenkins, i created a project with maven , so when i build the project in jenkins i create the documentation just with the follow goal: javadoc:javadoc but jenkins save all this ...
-1
votes
1answer
31 views

Eclipse code completion exclusively based on javadocs

Is it possible? I'm developing for a application server that in runtime give me access to some specific classes. I also have the javadocs related to those jars. Importing all the deployed jar into ...
1
vote
3answers
63 views

Overridden methods in JavaDoc

I'm documenting a Java program that I have developed, and wanted to know if JavaDoc will be generated for an inherited method (which is overridden) if I just document the superclass? If I have a ...
1
vote
0answers
56 views

Javadoc in Netbeans, combining <pre> and {@code} gives a larger than wanted font

In my Javadoc I give an example of how to use my class. Since this is a multi-line example it was recommended on stackOverflow to use a combination of <pre> and {@code }. It ...
0
votes
0answers
68 views

Maven is not working anymore when JavaDoc tags are incomplete

Since I use Maven I have been able to build and install in my local repository projects that have incomplete java doc tags (for example, a missing parameter). However, from one moment to another (do ...
2
votes
0answers
41 views

Generated javadoc but index.html gone weird

Im using eclipse and i generated javadoc with it, but when i open index.html this is all i get. Generated Documentation (Untitled) targetPage = "" + window.location.search; if (targetPage != "" ...
0
votes
0answers
44 views

netbeans with javadoc generate argument names as arg0,arg1,…

I made jar from javadoc simply by ziping javadoc html pages and then I imported it to netbeans. Everything works well, but argument names are like arg0,arg1,… I check it in html javadoc and there are ...
0
votes
2answers
62 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 ...
5
votes
2answers
46 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
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 ...
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
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
4answers
63 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
35 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
43 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
65 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
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
98 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
96 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?
0
votes
0answers
50 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
70 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 ...
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
42 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
74 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?

1 2 3 4 5 14