I am having problems modeling matrixes of a not defined number of places in StarUML... I've read in a previous question that, to add an array as an attribute, you have to write:
array: int[*]
After seeing that, I tried:
matrix: int[][]
matrix: int[ * ][ * ]
matrix: int[ * ][ ]
matrix: int[ ][ * ]
But none worked. They all sent a wrong syntax error popup. Does anyone know what the correct syntax would be?