
website.automate.jwebrobot.mapper.action.SelectActionMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebrobot Show documentation
Show all versions of jwebrobot Show documentation
Reference implementation of the web automation markup language (WAML).
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