This type is a class for model objects.
Array Creation expression, e.g. new int[3] or new java.langString[][] {{"a"}, {"b"}}
Package: instantiationAttributes Summary | |
type : EString | The fully-qualified type, e.g. int[][] or java.lang.String[], including the number of dimension brackets. |
dimensions : PTExpression * | The list of expressions for the dimensions. You can have [3][4][] but [][33] is invalid. So for each dimension that has an expression, there will be an entry in the list, in the correct order. When you reach the empty dimensions, the list will end too. |
initializer : PTArrayInitializer @ | This is the initializer, if any, for this array. E.g. new int[] {2,3}. It is the {2,3}. |
Attribute Details |