From 9ecf8b22637b2b34f39d6d81aa37fdc90fe19cf1 Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Wed, 11 Sep 2013 22:41:19 +0100 Subject: [PATCH] Document autoclass syntax for nested Java classes. --- docs/source/api.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/source/api.rst b/docs/source/api.rst index 5a99be3..959be7c 100644 --- a/docs/source/api.rst +++ b/docs/source/api.rst @@ -1,5 +1,5 @@ -.. _api: +.. _api: API === @@ -169,6 +169,10 @@ Reflection functions >>> autoclass('java.lang.System') + autoclass can also represent a nested Java class: + + >>> autoclass('android.provider.Settings$Secure') + Java class implementation in Python -----------------------------------