documentation
This commit is contained in:
54
docs/UML/mxgraph.puml
Normal file
54
docs/UML/mxgraph.puml
Normal file
@@ -0,0 +1,54 @@
|
||||
@startuml mxgraph
|
||||
package MxGraph {
|
||||
|
||||
class MxGraphModel {
|
||||
- XMLName xml.Name
|
||||
+ Root : RootStruct
|
||||
+ createLinks()
|
||||
}
|
||||
|
||||
class RootStruct {
|
||||
- XMLName xml.Name
|
||||
- MxCell[] MxCell
|
||||
- MxObject[] MxObject
|
||||
- MxLink[] MxLink
|
||||
}
|
||||
|
||||
class MxCell {
|
||||
- XMLName xml.Name
|
||||
+ ID string
|
||||
+ RID *string
|
||||
+ Rtype string
|
||||
+ Parent *string
|
||||
+ Edge *string
|
||||
+ Source *string
|
||||
+ Target *string
|
||||
+ processLinks()
|
||||
}
|
||||
|
||||
class MxLink {
|
||||
+ ID string
|
||||
+ Source string
|
||||
+ Target string
|
||||
}
|
||||
|
||||
class MxObject {
|
||||
- XMLName xml.Name
|
||||
+ ID string
|
||||
+ Settings []xml.Attr
|
||||
+ MxCell MxCell
|
||||
}
|
||||
|
||||
class mxissue {
|
||||
- msg string
|
||||
+ Error() string
|
||||
}
|
||||
|
||||
MxGraphModel *-- RootStruct : Root
|
||||
RootStruct *-- MxCell : MxCell
|
||||
RootStruct *-- MxObject : MxObject
|
||||
RootStruct *-- MxLink : MxLink
|
||||
MxObject *-- MxCell : MxCell
|
||||
}
|
||||
|
||||
@enduml
|
||||
2
docs/UML/plantuml/diagram_object_routers.puml
Normal file
2
docs/UML/plantuml/diagram_object_routers.puml
Normal file
@@ -0,0 +1,2 @@
|
||||
@startuml
|
||||
@enduml
|
||||
Reference in New Issue
Block a user