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

com.upplication.cordova.util.Environment Maven / Gradle / Ivy

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


/**
 * Environments local vars needed by cordova
 */
public class Environment {

    private String cordovaPath;
    private String nodePath;

    public String getCordovaPath() {
        return cordovaPath;
    }

    public void setCordovaPath(String cordovaPath) {
        this.cordovaPath = cordovaPath;
    }

    public String getNodePath() {
        return nodePath;
    }

    public void setNodePath(String nodePath) {
        this.nodePath = nodePath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy