Starting an Intent; how to 'add' the activity class?

Hello fellow programmers,

Still studying the example app on
http://developer.android.com/resources/samples/BluetoothChat/index.html ,
and making a lot of progress thanks to you!

The next piece has me puzzeled again though. It’s another instance where ‘converting’ Java to Oxygene is a little tricky (for me anyways, hehe):

var serverIntent : Intent :=new Intent(self, DeviceListActivity.class);

Throws : Error 86 (E43) No static member “class” on type “org.me.androidapplication14.DeviceListActivity”
DeviceListActivity is (as you would have guessed) an Activity.

It’s probably obvious what I want to do here; I am guessing it’s a matter of altering DeviceListActivity.Class to something…
How do I ‘convert’ this…?

Thanks in advance!

Greetz,
Oznov

Try typeof(DeviceListactivity)

That should do it, IIRR