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

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

There is a newer version: 2.0.5
Show newest version
package website.automate.jwebrobot.mapper.action;

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

public class SelectActionMapper extends FilterActionMapper {

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

    @Override
    public void map(SelectAction source, SelectAction target) {
        super.map(source, target);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy