Package games.stendhal.client.actions

Source Code of games.stendhal.client.actions.BareBonesBrowserLaunchCommand

/* $Id: BareBonesBrowserLaunchCommand.java,v 1.3 2010/09/24 20:52:18 nhnb Exp $ */
/***************************************************************************
*                   (C) Copyright 2003-2010 - Stendhal                    *
***************************************************************************
***************************************************************************
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
***************************************************************************/
package games.stendhal.client.actions;

import games.stendhal.client.ClientSingletonRepository;
import games.stendhal.client.gui.BareBonesBrowserLaunch;
import games.stendhal.client.gui.chatlog.HeaderLessEventLine;
import games.stendhal.common.NotificationType;

/**
* generalized super class to provide a uniform way to open urls in the browser
*
* @author madmetzger
*/
public class BareBonesBrowserLaunchCommand implements SlashAction{
 
  private final String urlToOpen;

  /**
   * creates a new BareBonesBrowserLaunchCommand
   *
   * @param url url to open
   */
  public BareBonesBrowserLaunchCommand(String url) {
    urlToOpen = url;
  }

  /**
   * Opens an URL with the browser
   *
   * @param params ignored
   * @param remainder ignored
   * @return <code>true</code>
   */
  public boolean execute(final String[] params, final String remainder) {
    ClientSingletonRepository.getUserInterface().addEventLine(new HeaderLessEventLine(
        "Trying to open #" + urlToOpen + " in your browser.",
    NotificationType.CLIENT));
 
    BareBonesBrowserLaunch.openURL(urlToOpen);
 
    return true;
  }

  /**
   * Get the maximum number of formal parameters.
   *
   * @return The parameter count.
   */
  public int getMaximumParameters() {
    return 0;
  }

  /**
   * Get the minimum number of formal parameters.
   *
   * @return The parameter count.
   */
  public int getMinimumParameters() {
    return 0;
  }

}
TOP

Related Classes of games.stendhal.client.actions.BareBonesBrowserLaunchCommand

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.