Guest User

Untitled

a guest
Feb 25th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. (gen-class
  3.   :name com.company.Aclass
  4.   :prefix rad-
  5.   :extends org.eclipse.jetty.util.component.AbstractLifeCycle
  6.   :state state
  7.   :init init
  8.   :constructors {[java.util.Map] []}
  9.   :methods [[getStuff [] java.util.List]]
  10.   )
  11.  
  12.  
  13. (defn ^java.util.List rad-getStuff
  14.   [^Aclass this]
  15.   (do
  16.     @(.state this)
  17.     ))
Advertisement
Add Comment
Please, Sign In to add comment