In Java it is not uncommon to run into anonymous classes looking something like this:

Code:
AnonymousClass aSpecificInstanceOfAnonymousClass = new AnonymousClass() { public void someMethod() { /* specific implementation */ }};
Does anyone know if this is possible in Oxygene? I've tried copy some Java code looking like this through the Oxidizer and that didn't work so it may well not be possible. On the other hand the Oxidizer also fails to translate a line like this:
Code:
someObject.someFloat = 128f/255f;
so maybe it is possible?