The problem arises on complex enums (has methods).
E.g
public interface HasType
{
int getType();
}
public enum Size implements HasType
{
SMALL
{
public int getType()
{
return 1;
}
}
,
MEDIUM
{
public int getType()
{
return 2;
}
}
,
LARGE
{
public int getType()
{
return 3;
}
}
;
}
Original issue reported on code.google.com by david.yu...@gmail.com on 11 Apr 2012 at 7:11
Original issue reported on code.google.com by
david.yu...@gmail.com
on 11 Apr 2012 at 7:11