Package org.jrebirth.af.core.command.basic.multi

Source Code of org.jrebirth.af.core.command.basic.multi.UiCommand

package org.jrebirth.af.core.command.basic.multi;

import javafx.stage.Stage;

import org.jrebirth.af.core.command.DefaultUICommand;
import org.jrebirth.af.core.wave.Wave;

public class UiCommand extends DefaultUICommand {

    /**
     * {@inheritDoc}
     */
    @Override
    protected void initCommand() {
        // Nothing to do yet
        super.initCommand();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected void perform(Wave wave) {

        Stage s = new Stage();
        s.show();
        s.close();
        System.out.println("ui command done");
    }

}
TOP

Related Classes of org.jrebirth.af.core.command.basic.multi.UiCommand

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.