comparison org/util.org @ 459:a86555b02916

changes from laptop.
author Robert McIntyre <rlm@mit.edu>
date Thu, 27 Mar 2014 17:56:26 -0400
parents 42ddfe406c0a
children 763d13f77e03
comparison
equal deleted inserted replaced
458:42ddfe406c0a 459:a86555b02916
57 57
58 (defn mega-import-jme3 58 (defn mega-import-jme3
59 "Import ALL the jme classes. For REPL use." 59 "Import ALL the jme classes. For REPL use."
60 [] 60 []
61 (dorun 61 (dorun
62 (import com.aurellem.capture.IsoTimer)
62 (map (comp permissive-import symbol) (jme-class-names)))) 63 (map (comp permissive-import symbol) (jme-class-names))))
63 #+end_src 64 #+end_src
64 65
65 jMonkeyEngine3 has a plethora of classes which can be overwhelming to 66 jMonkeyEngine3 has a plethora of classes which can be overwhelming to
66 manage. This code uses reflection to import all of them. Once I'm 67 manage. This code uses reflection to import all of them. Once I'm