Package net.sf.mvc.mobile.command

Source Code of net.sf.mvc.mobile.command.NavigationCommand

package net.sf.mvc.mobile.command;

import javax.microedition.lcdui.Displayable;

import net.sf.mvc.mobile.Navigation;

public class NavigationCommand extends ActionCommand {

  private final Navigation navigation;

  public NavigationCommand(Navigation navigation, String label, int type, int priority) {
    super(label, type, priority);
    this.navigation = navigation;
  }
  public NavigationCommand(String navi, String label, int type, int priority) {
    this(new Navigation(navi, null), label, type, priority);
  }

  public Navigation execute(Displayable d) throws Exception {
    return navigation;
  }
}
TOP

Related Classes of net.sf.mvc.mobile.command.NavigationCommand

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.