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

com.redhat.ceylon.cmr.api.ModuleVersionQuery Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.cmr.api;

public class ModuleVersionQuery extends ModuleQuery {

    private String version;

    public ModuleVersionQuery(String name, String version, Type type) {
        super(name, type);
        this.version = version;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    @Override
    public String toString() {
        return "ModuleVersionQuery[name=" + name + ",version=" + version + ",type=" + type + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy