with only one JavaTypeExpr parameter will not be accepted by Modelio. This situation, however, is very rare.

1
type  MyVariable = test((/*comment*/a+b)*(c+d));
1
int MyVariable = input[/*comment*/0];
1
int[] MyAttribute /*comment*/;
1
2
3
4
private static final String/*comment*/[] MyVariable =
{
...
};
1
2
3
4
private static final String [] MyVariable
/*comment*/= {
...
};
1
2
3
4
5
6
if (a == 10 && (/*comment*/
// comment
b>12
)){
...
}
1
2
3
4
5
6
public static final String
//comment
_URL_1_ = "https://www.modeliosoft.com",
//comment
_URL_2_= "https://www.modeliosoft.fr",
_URL_3_= "http://www.modeliosoft.fr";
1
2
3
4
5
6
7
8
9
10
public enum Week{
_Monday_ /*comment*/,
_Tuesday_
//Comment
, _Wednesday_,
_Thursday_,
//Comment
_Friday_,
/*Comment*/ _Saturday_,
_Sunday_
1
2
3
public void actionPerformed(ActionEvent e) {
...
}   //

Example:

Replace:

1
2
...
 } //comment<end of file>

with:

1
2
3
...
} //comment<end of file><return>
<end of file>