1 / 4

Summary of the lecture

Summary of the lecture. We introduced the instantiation dependency This is a binary relationship (a relationship between two classes). It is directional, from a source class to a target class

Download Presentation

Summary of the lecture

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Summary of the lecture • We introduced the instantiation dependency • This is a binary relationship (a relationship between two classes). • It is directional, from a source class to a target class • Only the definition of the source class is affected by the presence of the relationship (this is how we define the source class in a relationship in general) • Example is on next two slides of an instantiation dependency between classes A (source) and B (target)

  2. Instantiation Dependency in UML

  3. class A – the source class package pkg; public class A { public A() { new B(); } }

  4. class B – the target class package pkg; public class B { public B() { } }

More Related