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

com.upplication.cordova.Splash Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show newest version
package com.upplication.cordova;

/**
 * splash element in the config.xml
 * https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/index.html
 */
public class Splash {

    private String src;
    private Integer height;
    private Integer width;
    private String density;

    public static Splash create() {
        return new Splash();
    }

    public Splash src(String src) {
        this.src = src;
        return this;
    }

    public Splash height(Integer height){
        this.height = height;
        return this;
    }

    public Splash width(Integer width) {
        this.width = width;
        return this;
    }

    public Splash density(String density) {
        this.density = density;
        return this;
    }

    public String getSrc() {
        return src;
    }

    public Integer getHeight() {
        return height;
    }

    public Integer getWidth() {
        return width;
    }

    public String getDensity() {
        return density;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy