I have the following generic class header in Java:
class OrganizedGroup <T extends Leader>
The class represents an organized group. For instance, a music group would have a music leader, an enterprise would have a boss...
How can I represent the condition T extends Leader using UML?
REMARK/EDIT:
There are different so questions that ask about generics and UML. However, my question asks about and additional restriction the parameter should be shown in the diagram as subclass of another class.