I'm making use of a Java helper class with several static fields and methods:
doSomething(doableThing, TrackingHandler.EVENT_AREA_FINANCE, TrackingHandler.SUCCEEDED(TrackingHandler.EVENT_KEY_THING));
I'm trying to come up with a cleaner way to reference my static fields and methods, without having to repeat the TrackingHandler class name so many times.
I realize it's not quite the same idea, but something akin to C#'s "using" would be great:
using TrackingHandler
{
doSomething(doableThing, EVENT_AREA_FINANCE, SUCCEEDED(EVENT_KEY_THING));
}
Is there a way to do this?