1 /*
2 * @(#)$Id: GuiBundleService.java 689 2009-07-22 00:10:27Z bsigner $
3 *
4 * Author : Ueli Kurmann, igesture@uelikurmann.ch
5 *
6 *
7 * Purpose : Service wrapper for a GuiBundle.
8 *
9 * -----------------------------------------------------------------------
10 *
11 * Revision Information:
12 *
13 * Date Who Reason
14 *
15 * 23.03.2008 ukurmann Initial Release
16 * 29.10.2008 bsigner Cleanup
17 *
18 * -----------------------------------------------------------------------
19 *
20 * Copyright 1999-2009 ETH Zurich. All Rights Reserved.
21 *
22 * This software is the proprietary information of ETH Zurich.
23 * Use is subject to license terms.
24 *
25 */
26
27
28 package org.ximtec.igesture.tool.service;
29
30 import org.sigtec.graphix.GuiBundle;
31 import org.ximtec.igesture.tool.locator.Service;
32
33
34 /**
35 * Service wrapper for a GuiBundle.
36 *
37 * @version 1.0, Mar 2008
38 * @author Ueli Kurmann, igesture@uelikurmann.ch
39 * @author Beat Signer, signer@inf.ethz.ch
40 */
41 public class GuiBundleService extends GuiBundle implements Service {
42
43 public static final String IDENTIFIER = "guiBundle";
44
45
46 public GuiBundleService(String resourceBundleName) {
47 super(resourceBundleName);
48 }
49
50
51 @Override
52 public String getIdentifier() {
53 return IDENTIFIER;
54 } // getIdentifier
55
56 }