0
votes
0answers
19 views

Where can I host API docs in javadoc and phpdoc format? [closed]

I'm trying to find a place to host API docs in javadoc and phpdoc format, something like readthedocs.org with webhooks into git would be ideal.
1
vote
1answer
39 views

Include documentation in a JAR file

With Eclipse it is possible to attach a documentation folder to a jar file in order to see the jar classes' documentation while programming. My question is: is it possible to directly include the ...
0
votes
1answer
37 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?
0
votes
1answer
47 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 ...
7
votes
3answers
93 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
2answers
198 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" ...
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 ...
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 ...
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: ...
-2
votes
2answers
69 views

JavaDoc: If the @param comment does not fit in one line [closed]

If the @param comment does not fit in one line, will JavaDoc recognize words written in a newline as information regarding the method's parameters?
0
votes
1answer
142 views

Socket API SocketImpl

According to the Java docs for Socket the socket has an instance of a class called SocketImpl. However if you look at that class it clearly states that SocketImpl is an abstract class. As far i know ...
2
votes
2answers
132 views

Accessible Java documentation [closed]

What is the best way to make your Java documentation really accessible? I'm a key contributor to the ELKI data mining package, and I'm facing the issue that a lot of the users do not find the ...
0
votes
0answers
64 views

IntelliJ javadocs for jetty are present but do not pop-up

My IntelliJ project uses embedded-jetty and runs well. I added jetty as a Library and it lists jetty's javadoc directory in the library structure. When I am on a jetty class name in the source and ...
2
votes
2answers
73 views

Doclava - How to generate versioned xml?

I am using Doclava for android documentation. I want to use the API versioning feature for which I need to set -since version.xml name in the ant task. How do I generate these versioned xml files? ...
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 ...
0
votes
1answer
72 views

How do documentation generators work?

I'm trying to understand how documentation generators like Doxygen, JavaDocs etc. work. Please don't get me wrong, I'm not asking how to use them, but how they do it. I tried to find information about ...
12
votes
4answers
150 views

Is there a way to intelligently fix documentation in Eclipse?

Back in my C# days, I loved using a Visual Studio extension called "GhostDoc". Now that I'm a being used as a Java developer I'm using Eclipse. I can live without being able to have inferred ...
0
votes
2answers
184 views

Creating javadoc style documentation without source code

I'm looking into writing documentation about some functions but do not want to write the documentation in the source code. Is there a template I can follow, e.g XML, or something which can generate ...
0
votes
0answers
155 views

JaxDoclets maven config

I'm trying to use jax doclets to generate documentation for a REST project and I'm using jax doclets to do so. The problem is that all the documentation is generated except for my entities / dtos / ...
4
votes
1answer
93 views

What is the convention for documenting arguments passed to a callback in javascript?

When using a javadoc-style documenting style, is there a convention for documenting the arguments passed to a callback function? /** * @param cb {Function} A callback that will be passed a name ...
1
vote
1answer
159 views

Documenting Varargs Appropriately for Javadoc

I'm using varargs in a method for optional parameters. Any suggestion for how best to document the method? Here's a wonderfully contrived example: /** * * @param consumption * liters of liquid ...
13
votes
3answers
643 views

How do I use the old javadoc style / theme with JDK 7?

The new theme in JDK 7 for javadoc is hard for me to read. It may not be pretty but I really would prefer the old theme. Aside from installing the old JDK and switching between them, can I somehow use ...
2
votes
2answers
481 views

How to document my method in Java like Java docs?

I want that when i mouse over a method i would be able to see my documentation of what the method does like when i put the mouse over Java's method I know that /** */ is how its done but: How do you ...
0
votes
3answers
168 views

where is the javadoc for my installed java? I have sdk for 7

where is the Javadoc for my installed java? I have JDK 7. Is it somewhere inside the actual Java 7 code where it stores a Javadoc of itself?
2
votes
2answers
437 views

Generator or Tool for comprehensive documentation of Java applications

I am the maintainer of an open source project which is mainly written in Java. It is well documented and the Javadoc generator automatically creates a useable documentation. But i want to create a ...
1
vote
2answers
67 views

How should I document exceptions that aren't thrown by a certain method/constructor, but might be thrown by another that is called?

Say I have a class with three constructors, like the one below: public class ExampleClass { // constructor #1 public ExampleClass(int a) { this(a, "aaa"); // "aaa" is just an ...
2
votes
2answers
118 views

Man or javadoc-style documentation for common lisp

Is there any kind of common lisp docs like javadoc, man or even intellisense-like popups? I've just started learning common lisp and do not have enough hand memory. I am using emacs and slime — it ...
1
vote
1answer
54 views

Embedding MediaWiki Pages in Class Documentation

I would like to know if there is any possibility to embed mediawiki pages in the javadoc view in eclipse? We maintain a wiki with informations related to our modules, some functionality, specific ...
1
vote
1answer
31 views

Is there a Maven plugin to launch a web server providing access to the JavaDoc of a project's dependencies?

Is there a Maven plugin that will download the JavaDoc JARs for all my project's dependencies, and spin up a web server (using Jetty?) that serves the JavaDoc? It would be useful for browsing ...
0
votes
2answers
90 views

JDK Documentation searchable offline?

Can anyone help? i have downloaded the jdk docs (7) to my pc and i can open it up to look at all the packages and classes in the html but it appears i can't search. You can on the online version but ...
1
vote
2answers
292 views

How to generate JavaDoc documentation for classes without source?

I would like to generate some basic html interface documentation (without comments of course) of the class files within a jar to which I do not have source. How can I go about doing this? The old ...
0
votes
1answer
104 views

Source file documentation syntax

I'm looking for resources on various code/API documentation syntaxes, such as Javadocs. Are there any other widely used documentation syntaxes? I'm specifically looking for those used in association ...
2
votes
1answer
139 views

Is there a button to show documentation for the element under cursor in IntelliJ Idea?

Some times it would be handy to see a ScalaDoc/JavaDoc page for the type of the element under cursor. Surprisingly, I could find no IDE-built-in way to do this (despite the fact the most of the ...
-2
votes
3answers
186 views

Javadocs and multiline description?

I'm having trouble with javadocs. It seems to be both useful and extremely stupid! I'm trying to write a multiline description for a class: /** * this is my class, there are many like it, but this ...
1
vote
1answer
124 views

Javadoc multiple packages

I am trying to generate java documentation for multiple packages so I have a single index.html, I can generate them fine for single packages by writing, javadoc packages/mypackage1/program/*.java ...
1
vote
1answer
267 views

Javadoc only generates the Interface comments and not the class implementations

I am confused about something very basic when generating a Javadoc. Lets say I have an interface: /** *Javadoc comment in interface * */ public interface IOne{ public Comparable[] meth(); } ...
0
votes
1answer
70 views

Inheriting javadoc from libraries in archive files

It's possible to inherit JDK documentation into methods you've overridden/implemented when generating Javadoc. (for example this SO question.) This works by adding a directory containing the JDK ...
2
votes
3answers
682 views

Download Spring API docmentation

I want to download the Spring API documentation and save it locally on my machine. The link for that is Here How do i download all of this? And Can i integrate this to eclipse? Thanks in Advance
0
votes
1answer
783 views

Hibernate Subqueries Documentation

I'm a newbie in hibernate. Please help me find a good documentation for the class org.hibernate.criterion.Subqueries . I've been searching around the web for some time now. But couldn't find even a ...
5
votes
2answers
317 views

Looking for a better alternative to Javadoc

I'd like to generate documentation for my Java project, but I don't like the output of the default JavaDoc (especially frames). Is there any alternative besides providing stylesheets? I'd like to use ...
0
votes
2answers
694 views

Markdown for automatic doc generation?

I've use javadoc, as well as a variety of different XML based doc-generation systems. Javadoc is fine, XML based doc-generators are hideous, with the XML getting all over the comments and turning the ...
4
votes
2answers
2k views

How can I reference the value of a final static field in the class javadoc?

/** * This is a simple class with only one static field with the value ???. */ public class Simple { /** * We can reference the value with {@value} here, * but how do we reference it ...
0
votes
2answers
99 views

How does one look up documentation for dynamic methods and or dynamic objects in Grails?

I'm familiar with the concept that dynamic methods are added via AOP to domain objects in Grails. But since they're dynamic, how is it that you find the documentation to them? It wouldn't be ...
1
vote
2answers
191 views

Getting documention to appear in intellitext window using eclispe and java

When using the standard api, for example the collections library, the predictive text options windows also shows the comments on class/methods. however when I do the same style comments on my own ...
3
votes
2answers
981 views

How to parse a javadoc?

I am in the process of using Java to read javadocs. My java object has the attributes, Description Package Name Method Name, Method Description Is there any existing api that can do this? How can I ...
4
votes
4answers
125 views

How to Interpret /***/ in java?

What I am Doing? I am now constructing a comments segregator as a part of my simple IDE stimulator (Which will detect all the comments in the java code). In that my task is to note down all the ...
1
vote
0answers
45 views

Add user generated comments to existing javadoc

Our team develops software for BlackBerry devices. The BlackBerry API (javadocs) is poorly documented, and sometimes even outdated. What we would like to do is import this existing documentation into ...
0
votes
1answer
76 views

Automated API-Documentation

I'm searching for a solution that generates something like (or exactly) this documentation out of a bunch of source files: http://mon.itor.us/api/api.html#getPingMonitors (of course documented with ...
4
votes
1answer
850 views

Automatic propagation of private field javadoc's to getters/setters?

I've documented my bean private fields with Javadoc, explaining what each field is for. Can i propagate these documentations somehow to corrseponding getters/setters to reduce duplications of ...
0
votes
5answers
2k views

I want to create documentation in C#, something similar to javadoc

I want to create documentation in C#, of my application, similar to Javadoc. I know in Java you can create a javadoc, but: Is it possible to create something similar to a javadoc but in C#? And how ...

1 2 3