Last active
January 4, 2016 10:29
-
-
Save luctrudeau/8609324 to your computer and use it in GitHub Desktop.
Loose Coupling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
package "couche 1" <<Rect>> { | |
Observable <|-- A | |
} | |
package "couche 2" <<Rect>> { | |
Interface Observable | |
B -> A | |
} | |
@enduml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
package couche2 <<Rect>> { | |
B -> couche1.Observable | |
} | |
package couche1 <<Rect>> { | |
Interface Observable | |
couche1.Observable <|- couche1.A | |
} | |
@enduml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
package couche2 <<Rect>> { | |
Interface Observable | |
Class B | |
B -> Observable | |
Observable <|- couche1.A | |
couche1.A -> B | |
} | |
package couche1 <<Rect>> { | |
} | |
@enduml |
Author
luctrudeau
commented
Jan 24, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment