1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
| import art.library.model.devices.Device;
| import art.library.model.devices.DeviceCommands;
| import com.kitfox.svg.SVGDiagram;
|
|
|
|
| public class DeviceGraphicsRuntime extends art.library.model.devices.DeviceGraphicsRuntime
| {
| public DeviceGraphicsRuntime(Device device, SVGDiagram diagram)
| {
| super(device, diagram);
| }
|
| public DeviceGraphicsRuntime(Device device, DeviceCommands commands, SVGDiagram diagram)
| {
| super(device, commands, diagram);
| }
|
| }
|
|