Does PlantUML's class diagram notation support Java's default keyword. For example,
public interface Alice { public default Bob getBob() { return new Bob(); } }
If not, is there a way a default method could be indicated?Thanks.
(--------)