File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
11
11
12
12
- [ Evaluate One Liners With lein-exec] ( clojure/evaluate-one-liners-with-lein-exec.md )
13
13
- [ Expanding Macros] ( clojure/expanding-macros.md )
14
+ - [ Open JavaDocs] ( clojure/open-javadocs.md )
14
15
- [ Quick Clojure Docs] ( clojure/quick-clojure-docs.md )
15
16
- [ Specify the Directory of a Shell Command] ( clojure/specify-the-directory-of-a-shell-command.md )
16
17
- [ Splitting On Whitespace] ( clojure/splitting-on-whitespace.md )
Original file line number Diff line number Diff line change
1
+ # Open JavaDocs
2
+
3
+ Clojure has all kinds of Java interop including a fancy function called
4
+ ` javadoc ` . The ` javadoc ` function _ opens a browser window displaying the
5
+ javadoc for the argument_ .
6
+
7
+ Thinking about using Java's ` ArrayList ` class, but want to read up on it
8
+ first? Try
9
+
10
+ ```
11
+ > (javadoc java.util.ArrayList)
12
+ true
13
+ ```
14
+
15
+ The javadoc page for
16
+ [ ArrayList] ( http://docs.oracle.com/javase/6/docs/api/java/util/ArrayList.html )
17
+ will be opened up in your default browser.
You can’t perform that action at this time.
0 commit comments