Skip to content

Package: Device

Device

nameinstructionbranchcomplexitylinemethod
Device()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

Coverage

1: package networkconfigurator.item;
2:
3: /**
4: * Devices in the graph.
5: *
6: * @author Erik Arand
7: *
8: */
9: public abstract class Device extends Node {
10:         /**
11:          * Visitor for creating the right connection.
12:          *
13:          * @param visitor
14:          * the visitor.
15:          */
16:         public abstract void acceptConnectingTypeVisitor(ConnectingTypeVisitor visitor);
17:
18: }