Dependency

Relationship where one class utilises the services of another class.

Pasted image 20260215223738.png

public class Printer {
    public void print(Document doc) { // Dependency: doc is just a parameter
        System.out.println(doc.getContent());
    }
}