For example I hae a class Sensor a Class Control and a Class Rooksensor. I have an open arrow from Control to Sensor and a closed arrow from Rooksensor to Sensor. Here is what the UML-diagram looks like:
A little guess I did was that in the class Rooksensor its like:
Rooksensor: Sensor
And in the class Sensor:
Control control1 = new Control();
Control control2 = new Control();
I only wanna know what the arrow mean, if anyone could give me a good explanation on what they mean and how I should implent it I would be really happy.