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

website.automate.jwebrobot.mapper.action.WaitActionMapper Maven / Gradle / Ivy

package website.automate.jwebrobot.mapper.action;

import website.automate.waml.io.model.action.WaitAction;

public class WaitActionMapper extends ConditionalActionMapper {

    @Override
    public WaitAction map(WaitAction source) {
        WaitAction target = new WaitAction();
        map(source, target);
        return target;
    }

    @Override
    public void map(WaitAction source, WaitAction target) {
        super.map(source, target);
        target.setTime(source.getTime());
    }

    @Override
    public Class getSupportedType() {
        return WaitAction.class;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy