Welcome! Please see the About page for a little more info on how this works.

+1 vote
in java.doc by

Even though java.util.jar.JarEntry/.getName is a valid qualified method, the selected method docs aren't found.

> java.util.jar.JarEntry/.getName
 #function[...]

> (clojure.java.doc.api/javadoc-data-fn
   "java.util.jar.JarEntry/.getName"
   nil)
{:classname "java.util.jar.JarEntry",
 :class-description-html "<section ...",
 :class-description-md "All Implemented...",
 :methods
 [{:signature "getAttributes()",
   :description
   "Returns the Manifest Attributes for this entry, or null if none.",
   :static? false,
   :return-type "Attributes",
   :clojure-call "java.util.jar.JarEntry/.getAttributes"}
  ...],
 :selected-method []}

1 Answer

+1 vote
by
selected ago by
 
Best answer

Great feedback.

We were indeed not looking for inherited methods. That functionality is now present in the v0.1.4 release.

...