Class MultiArrayTransformer

  • All Implemented Interfaces:
    Transformer

    public class MultiArrayTransformer
    extends StatedTransformer
    dex does have the instruction to create a multi-array. the implement is to using the Array.newInstance(). transform
     ((String[][][])Array.newInstance(String.class,new int[]{4, 5, 6}))
     
    to
     new String[4][5][6]