Skip to content

Commit

Permalink
API to access AnnotationDeclaration (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
JLBuenoLopez authored May 20, 2024
1 parent 08cee42 commit 752ae92
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/com/eprosima/idl/parser/tree/Annotation.java
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,11 @@ public int getValuesSize()
return m_members.size();
}

public AnnotationDeclaration getAnnotationDeclaration()
{
return m_declaration;
}

private HashMap<String, AnnotationMember> m_members = null;
private AnnotationDeclaration m_declaration = null;
}

0 comments on commit 752ae92

Please sign in to comment.