1
2
3
4 package org.ximtec.igesture.tool.service;
5
6 import org.sigtec.graphix.GuiBundle;
7 import org.ximtec.igesture.tool.core.Controller;
8 import org.ximtec.igesture.tool.locator.Service;
9 import org.ximtec.igesture.tool.view.devicemanager.DeviceManagerController;
10
11
12
13
14
15 public class DeviceManagerService extends DeviceManagerController implements
16 Service {
17
18 public static final String IDENTIFIER = "deviceManagerService";
19
20
21
22
23 public DeviceManagerService(Controller parentController, String key,
24 GuiBundle guiBundle) {
25 super(parentController, key, guiBundle);
26 }
27
28
29
30
31 @Override
32 public String getIdentifier() {
33 return IDENTIFIER;
34 }
35
36 }