com.github.fracpete.wekavirtualenv.command.PackageManagerGUI Maven / Gradle / Ivy
/*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/*
* PackageManagerGUI.java
* Copyright (C) 2017-2018 University of Waikato, Hamilton, NZ
*/
package com.github.fracpete.wekavirtualenv.command;
import com.github.fracpete.simpleargparse4j.Namespace;
import com.github.fracpete.wekavirtualenv.env.Environment;
/**
* Executes the package manager GUI.
*
* @author FracPete (fracpete at waikato dot ac dot nz)
*/
public class PackageManagerGUI
extends AbstractLaunchCommand {
public final static String CLASSNAME = "weka.gui.PackageManager";
/**
* The name of the command (used on the commandline).
*
* @return the name
*/
@Override
public String getName() {
return "pkgmgr-gui";
}
/**
* Returns a short help string.
*
* @return the help string
*/
public String getHelp() {
return "Launches the package manager user interface.";
}
/**
* Returns whether the action is available.
*
* @return true if available
*/
@Override
public boolean isAvailable() {
return Environment.hasClass(getEnv().weka, CLASSNAME, true);
}
/**
* Executes the command.
*
* @param ns the namespace of the parsed options, null if no options to parse
* @param options additional command-line options
* @return true if successful
*/
protected boolean doExecute(Namespace ns, String[] options) {
if (!isAvailable()) {
addError("Package manager user interface is not available in Weka " + getEnv().version() + " (" + CLASSNAME + ")!");
return false;
}
return launch(build(CLASSNAME, options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy