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

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

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

import java.util.List;

public class PlatformResume {

    private List installed;
    private List available;

    public PlatformResume(List installed, List available) {
        this.installed = installed;
        this.available = available;
    }

    public List getInstalled() {
        return installed;
    }

    public List getAvailable() {
        return available;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy