From e8c28d0f07f3a714ed880527d7154c404e75558f Mon Sep 17 00:00:00 2001 From: Peter Badida Date: Fri, 1 Feb 2019 12:59:26 +0100 Subject: [PATCH] Add Java getClass() alternative to __javaclass__ for Something.class --- docs/source/api.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/api.rst b/docs/source/api.rst index ca7bd89..7b60c25 100644 --- a/docs/source/api.rst +++ b/docs/source/api.rst @@ -194,7 +194,8 @@ Reflection functions func_from() There is also a special case for a `SomeClass.class` class literal - which you will find in the `__javaclass__` python attribute. + which you will find either as a result of `SomeClass.getClass()` + or in the `__javaclass__` python attribute. Java class implementation in Python -----------------------------------