/*********************************************************************
* ____ _____ _ *
* / ___| ___ _ __ _ _ | ____|_ __(_) ___ ___ ___ ___ _ __ *
* \___ \ / _ \| '_ \| | | | | _| | '__| |/ __/ __/ __|/ _ \| '_ \ *
* ___) | (_) | | | | |_| | | |___| | | | (__\__ \__ \ (_) | | | | *
* |____/ \___/|_| |_|\__, | |_____|_| |_|\___|___/___/\___/|_| |_| *
* |___/ *
* *
*********************************************************************
* Sony Ericsson Mobile Communications AB, Lund Sweden *
* Copyright 2007 Sony Ericsson Mobile Communications AB. *
* All rights, including trade secret rights, reserved. *
*********************************************************************
*
* @file
* @ingroup JAVA
*
* @copyright_semc
* @author MIDP
*/
package com.sonyericsson.midp.command;
import javax.microedition.lcdui.Command;
import I.IUIGui;
/**
*
*/
public interface CommandOwner {
/**
* Gets the IUIGui that the Softkey shall belong to
*/
IUIGui getIUIGui();
CommandManager getCommandManager();
void notifyCommandListener(Command cmd);
void softkeyPressEvent(int keyCode);
}
|