I looked for the way to get current class in static method of the base class, to create the correct instance, depending on actual class, this static method was called on, but found nothing. Luckily I discovered, that ‘this’ is a constructor but not an instance in a static method, so you can just call it with ‘new’, in case…