You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifies the kinds of objects to create using a prototypical instance and create new objects by copying this prototype
classDiagram
direction LR
Client --> Prototype
Prototype <|-- ConcretePrototype1
Prototype <|-- ConcretePrototype2
class Prototype {
+Clone()
}
class ConcretePrototype1{
+Clone()
}
class ConcretePrototype2{
+Clone()
}