-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Labels
Description
If a connection is between a class and an interface, the connection between them is compiled as an extension.
Example:
class A {
+ someProp string
- someOtherProp number
+ number computeSomething(string x)
}
interface B
A --|> B
@enduml```
Code:
```class A extends B {
private string : someProp;
private number : someOtherProp;
computeSomething(x) {
return;
}
}
interface B {
}```
Expected:
```class A implements B {
private string : someProp;
private number : someOtherProp;
computeSomething(x) {
return;
}
}
interface B {
}```