forked from NitorCreations/DomainReverseMapper
-
-
Notifications
You must be signed in to change notification settings - Fork 91
Open
Description
code
abstract class AbstractResource {
private String path;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}the puml generated
@startuml
package com.ctrip.framework.apollo.openapi.client.service {
abstract ~class AbstractResource {
- path : String
~ AbstractResource()
+ getPath() : String
+ setPath(path : String)
}
}
@endumlfail to compile by puml becasue ~ in ~class
when change ~class to class, it work.
Metadata
Metadata
Assignees
Projects
Status
Todo
