Skip to content

Commit

Permalink
Fix Enum plain and bounded getters (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogs9 authored Apr 3, 2024
1 parent 78558db commit 7acf712
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/com/eprosima/idl/parser/typecode/EnumTypeCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,16 @@ public String getSize()
return "4";
}

@Override
public boolean isIsBounded()
{
return true;
}

@Override
public boolean isIsPlain()
{
return true;
}

}

0 comments on commit 7acf712

Please sign in to comment.