
website.automate.waml.io.model.action.ElementStoreAction Maven / Gradle / Ivy
package website.automate.waml.io.model.action;
public abstract class ElementStoreAction extends FilterAction {
private String store;
public String getStore() {
return store;
}
public void setStore(String store) {
this.store = store;
}
@Override
public boolean canBeShortNotated(){
return store == null
&& super.canBeShortNotated();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy