This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-12-12
Channels
- # adventofcode (42)
- # aleph (10)
- # announcements (1)
- # asami (138)
- # babashka (7)
- # beginners (7)
- # biff (13)
- # cider (7)
- # clj-kondo (15)
- # clojure (53)
- # clojure-austin (11)
- # clojure-belgium (2)
- # clojure-europe (23)
- # clojure-nl (1)
- # clojure-norway (55)
- # clojure-sweden (5)
- # clojure-uk (4)
- # cryogen (7)
- # cursive (63)
- # datomic (5)
- # eastwood (6)
- # emacs (31)
- # fulcro (7)
- # hyperfiddle (9)
- # introduce-yourself (3)
- # java (11)
- # lsp (10)
- # malli (14)
- # membrane (35)
- # off-topic (13)
- # portal (12)
- # prelude (1)
- # releases (2)
- # ring-swagger (27)
- # shadow-cljs (8)
- # timbre (25)
i placed the following:
(add-hook 'before-save-hook 'cider-format-buffer t t)
in various places in my init.el and prelude-clojure.el to no success#C099W16KZ channel should provide more support for Emacs related questions
I am trying to do java interoperability below is the java class which has inner class
class Params {
public class OrderParams{
public String transactionType;
}
}
But I am not able to create instance of OrerParams I tried to define in (com.tech.models.Params$orderParams. )
Getting - No matching ctor found for class com.zerodhatech.models.Params$OrderParams
I have imported the package already
I believe the java compiler adds a parameter to the constructor of non-static inner classes which is for passing in an instance of the outer class
Hi @U0NCTKEV8, any suggestion on defining it ?
I referred your old post, Ant I am able to create instance now 🙂