Hi there the infusion team

I would like to know if/how inFusion handles calls in static block in Java. I can not find such invocations in a model. Would it be complicated to add them?

I have the following sample:

class KeyMapping {

    static final KeyMapping keyMapping1 =
        new KeyMapping(KeyEvent.VK_LEFT,
                       KeyEvent.VK_RIGHT,
                       KeyEvent.VK_UP,
                       KeyEvent.VK_SPACE);

    static final KeyMapping keyMapping2 =
        new KeyMapping(KeyEvent.VK_X,
                       KeyEvent.VK_V,
                       KeyEvent.VK_D,
                       KeyEvent.VK_ALT);

    int left, right, thrust, fire;

    KeyMapping(int k_left, int k_right, int k_thrust, int k_fire) {
        left   = k_left;
        right  = k_right;
        thrust = k_thrust;
        fire   = k_fire;
    }
}

--
 Simon