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

au.csiro.ontology.input.ModuleInfo Maven / Gradle / Ivy

The newest version!
package au.csiro.ontology.input;

import java.util.ArrayList;
import java.util.List;


/**
 * Contains a module id and a list of versions that should be imported.
 * 
 * @author Alejandro Metke
 *
 */
public class ModuleInfo {
    protected String id;
    protected List versions = new ArrayList();
    
    public ModuleInfo() {
        
    }
    
    public ModuleInfo(String id) {
        super();
        this.id = id;
    }

    /**
     * @return the id
     */
    public String getId() {
        return id;
    }

    /**
     * @return the versions
     */
    public List getVersions() {
        return versions;
    }

    /**
     * @param id the id to set
     */
    public void setId(String id) {
        this.id = id;
    }

    /**
     * @param versions the versions to set
     */
    public void setVersions(List versions) {
        this.versions = versions;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy