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

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

package website.automate.jwebrobot.mapper.action;

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

public class MoveActionMapper extends FilterActionMapper {

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy