Reputation: 3563
I wonder if there is any page where I could write a class name, for instance
javax.faces.view.facelets.TagHandler
And tells me in which .jar is included. Because as I can see in this class documentation this information is not included.
EDIT: using your pages, http://www.findjar.com/ or http://www.jarfinder.com/ I don't find the class. Can anybody help me on this??
Thanks in advance
Upvotes: 0
Views: 459
Reputation: 7507
I found out thats: jsf-api-2.0.jar
you can download this jar here
http://download.java.net/maven/2/javax/faces/jsf-api/2.0/
Upvotes: 1
Reputation: 298898
I'd try http://www.docjar.com/ . It finds one result for your class.
Upvotes: -1
Reputation: 597106
There is http://www.jarfinder.com/ , but if you have the library in your project, you can open it in your IDE and it will show where it belongs.
For this particular class - it is part of mojarra (JSF-RI) - see here
Upvotes: -1