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

org.opencb.biodata.models.pathway.SubPathway Maven / Gradle / Ivy

The newest version!
/*
 * 
 *
 */

package org.opencb.biodata.models.pathway;

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

public class SubPathway {
	String name;
	List displayName;
	List subPathways;
	
	public SubPathway(String name, List displayName) {
		this.name = name;
		this.displayName = displayName;
		this.subPathways = new ArrayList();
	}

	public void addSubpathways(SubPathway sp) {
		this.subPathways.add(sp);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy