All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.magentys.fest.missions.AbstractFinderMission Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.magentys.fest.missions;

import io.magentys.fest.screens.SwingScreenElement;

public abstract class AbstractFinderMission {

    protected SwingScreenElement swingScreenElement;

    public AbstractFinderMission(SwingScreenElement swingScreenElement) {
        this.swingScreenElement = swingScreenElement;
    }

    protected AbstractFinderMission() {
    }




    protected String waitMessage(final SwingScreenElement swingScreenElement){
        if(swingScreenElement.getAlias() != null){
            return "Waiting for " + swingScreenElement.getAlias();
        }
        return "Waiting for element";
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy