How to enable javadoc for primefaces elements?

I started using price lists a few months ago, and I could not find a way to enable javadoc for simple surfaces. Now I want to know if there is a way to do this and how to do it?

Thanks in advance Leo

PS: I am using Netbeans7

+6
source share
2 answers

This link (regarding tablib docs) and this other link (regarding user manual) may help. I don't think taglib documentation is already included in the JAR, but their lead developer says it will. He also says that the user manual is now free (used to cost 10 euros).

This forum post may also be of interest to you if you are using PrimeFaces 3.0-M3-SNAPSHOT.

This issue was also discussed in yet another stack overflow question regarding older PrimeFaces.

+5
source

One approach would be to link the source and binary jar to the library via Tools → Library → new library, and then register this library in your application (right click on the project → properties → libraries → add library)

However, I do not think this will help you, since I do not see the comments in several classes that I looked at, and I do not see javadocs jar. So your best bet is probably the user guide .

+1
source

Source: https://habr.com/ru/post/893092/


All Articles