Yeah I know about this implementation, but I would like to use a
library function... I guess I can compromise until it's supported,
just wondering if the newer version of GWT supports Class.getSimpleName
()
Thanks though.
On Jul 16, 1:08 am, lumo <
lumo2...@gmail.com> wrote:
> if not
>
> [code]
> public String getSimpleClassName() {
> String className = this.getClass().getName();
> return className.substring(
> className.lastIndexOf(".") + 1, className.length());
> }
> [/code]
>
> 2009/7/15 Pandaman <
p4nda...@gmail.com>