/* * $Id: KeyboardShortcut.java,v 1.3 2006/04/09 12:13:17 laddi Exp $ * Created on 13.9.2004 * * Copyright (C) 2004 Idega Software hf. All Rights Reserved. * * This software is the proprietary information of Idega hf. * Use is subject to license terms. */ package com.idega.core.view; /** * * Last modified: $Date: 2006/04/09 12:13:17 $ by $Author: laddi $ * * @author <a href="mailto:tryggvil@idega.com">tryggvil</a> * @version $Revision: 1.3 $ */ public class KeyboardShortcut { private String actionKey; public KeyboardShortcut(){} /** * @param actionKey is a single key modifier */ public KeyboardShortcut(String actionKey){ this.actionKey = actionKey; } /** * @return Returns the actionKey. */ public String getActionKey() { return this.actionKey; } /** * @param actionKey The actionKey to set. */ public void setActionKey(String actionKey) { this.actionKey = actionKey; } }