In some Java source for Android I see expressions involving a "class" member on Class types, for example when constructing a ComponentName object:
cname := new ComponentName( this, SomeClass.class );
This does not compile in Oxygene for Java, with the compiler claiming that there is no such static member 'class' on the type.
What is the equivalent Oxygene syntax ?