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

com.silanis.esl.api.model.TitleBarOptions Maven / Gradle / Ivy

There is a newer version: 11.59.0
Show newest version
package com.silanis.esl.api.model;
//
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.silanis.esl.api.util.SchemaSanitizer;
@JsonIgnoreProperties(ignoreUnknown=true)
public class TitleBarOptions extends Model
      implements java.io.Serializable
{
    
    // Dirty Flag Constants
    @JsonIgnore
    public static final String FIELD_PROGRESSBAR = "progressBar";
    @JsonIgnore
    public static final String FIELD_TITLE = "title";
    
    // Empty Constructor
    public TitleBarOptions ( ) {}
    
    // Fields
    protected Boolean _progressBar;
    protected Boolean _title;
    
    // Accessors
        
    
    public TitleBarOptions setProgressBar( Boolean value ){
        SchemaSanitizer.throwOnNull(FIELD_PROGRESSBAR,value);
        // TODO With proper compare
        // if ( this._progressBar == value ) return this;
        this._progressBar = value;
        setDirty(FIELD_PROGRESSBAR);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public TitleBarOptions safeSetProgressBar( Boolean value ){
        if ( value != null ) { this.setProgressBar( value ); }
        return this;
    }
    public Boolean getProgressBar(){
        return _progressBar;
    }
    @JsonIgnore
    public boolean evalProgressBar(){
        return _progressBar == null ? false : _progressBar.booleanValue();
    }
    
        
    
    public TitleBarOptions setTitle( Boolean value ){
        SchemaSanitizer.throwOnNull(FIELD_TITLE,value);
        // TODO With proper compare
        // if ( this._title == value ) return this;
        this._title = value;
        setDirty(FIELD_TITLE);
        return this;
    }
    // Used internally by aws. Invokes a the corresponding setter if the value is not null
    @JsonIgnore
    public TitleBarOptions safeSetTitle( Boolean value ){
        if ( value != null ) { this.setTitle( value ); }
        return this;
    }
    public Boolean getTitle(){
        return _title;
    }
    @JsonIgnore
    public boolean evalTitle(){
        return _title == null ? false : _title.booleanValue();
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy