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

website.automate.waml.io.model.action.EnsureAction Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package website.automate.waml.io.model.action;

public class EnsureAction extends FilterAction {

    private String absent;
    
    public String getAbsent() {
        return absent;
    }
    
    public void setAbsent(String absent) {
        this.absent = absent;
    }
    
    @Override
    public boolean canBeShortNotated(){
        return absent == null
                && super.canBeShortNotated();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy