classDiagram class Notification { <> +send() } class EmailNotification { +String recipient +send() } Notification <|.. EmailNotification