Tagged Questions
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 ...
2
votes
2answers
72 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? ...
1
vote
1answer
174 views
Getting Android enum descriptions to appear in JavaDoc
I have defined a custom attribute in xml that must take an enum value as a parameter. The JavaDoc that is automatically produced from my application's R.attr builds a table with enum name and value, ...
1
vote
4answers
629 views
function in visual studio to create documentation similar to javadocs?
Is there a easy way to create documentation pages based on xml documentation in visual studio 2010/c# like there is in ecplipse/java javadocs?
0
votes
4answers
148 views
How to use a java class based on its API documentation
I am quite new to Java, and need to work on a project requiring using open source software. I am very confusing about understanding those Java API's documentation.
As an example, can you show me how ...
9
votes
4answers
1k views
Does Javadoc have an equivalent to <![CDATA[ … ]]>?
Unfortunately, there is no CDATA in HTML.
This is a pity, because it would be perfect for adding javadoc comments that include XML, so you don't have to escape the < and >, for example:
...
2
votes
1answer
2k views
Checkstyle's PackageHtml-rule ignores package-info.java
I use checkstyle to analyze my code. A useful rule is PackageHtml, that checks, if a package contains a Javadoc-description. But with newer java-version it's recommended to use package-info.java ...
0
votes
2answers
681 views
In javaDoc, what's the best way of representing attributes in XML? [closed]
When you're adding javaDoc comments to your code and you're outlining the structure of an XML document that you're passing back, what's the best way to represent attributes? Is there a best practice ...