View Javadoc

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   * @author Bjorn Puype, bpuype@gmail.com
13   *
14   */
15  public class DeviceManagerService extends DeviceManagerController implements
16  		Service {
17  
18  	public static final String IDENTIFIER = "deviceManagerService";
19  	
20  	/**
21  	 * @see org.ximtec.igesture.tool.view.devicemanager.DeviceManagerController#DeviceManagerController(Controller, String, GuiBundle)
22  	 */
23  	public DeviceManagerService(Controller parentController, String key,
24  			GuiBundle guiBundle) {
25  		super(parentController, key, guiBundle);
26  	}
27  
28  	/* (non-Javadoc)
29  	 * @see org.ximtec.igesture.tool.locator.Service#getIdentifier()
30  	 */
31  	@Override
32  	public String getIdentifier() {
33  		return IDENTIFIER;
34  	}
35  
36  }