CommandOwner.java :  » Game » gameporting » com » sonyericsson » midp » command » Android Open Source

Android Open Source » Game » gameporting 
gameporting » com » sonyericsson » midp » command » CommandOwner.java
/*********************************************************************
 *  ____                      _____      _                           *
 * / ___|  ___  _ __  _   _  | ____|_ __(_) ___ ___ ___  ___  _ __   *
 * \___ \ / _ \| '_ \| | | | |  _| | '__| |/ __/ __/ __|/ _ \| '_ \  *
 *  ___) | (_) | | | | |_| | | |___| |  | | (__\__ \__ \ (_) | | | | *
 * |____/ \___/|_| |_|\__, | |_____|_|  |_|\___|___/___/\___/|_| |_| *
 *                    |___/                                          *
 *                                                                   *
 *********************************************************************
 * 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);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.