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

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

package website.automate.jwebrobot.mapper.action;

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

public class EnterActionMapper extends FilterActionMapper {

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

    @Override
    public void map(EnterAction source, EnterAction target) {
        super.map(source, target);
        target.setInput(source.getInput());
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy