|
|
|
@ -266,6 +266,34 @@ Controlleur ..> Model : utilise
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package Fabrique
|
|
|
|
|
{
|
|
|
|
|
interface Factory
|
|
|
|
|
{
|
|
|
|
|
+ create() : InterfaceCollection
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class FactoryOffreTheque
|
|
|
|
|
{
|
|
|
|
|
+ create() : OffreTheque
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FactoryEvenementTheque
|
|
|
|
|
{
|
|
|
|
|
+ create() : EvenementTheque
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FactoryAPropos
|
|
|
|
|
{
|
|
|
|
|
+ create() : APropos
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FactoryOffreTheque --|> Factory
|
|
|
|
|
FactoryEvenementTheque --|> Factory
|
|
|
|
|
FactoryAPropos --|> Factory
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@enduml
|
|
|
|
|