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

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

The newest version!
/*
 * 
 *
 */

package org.opencb.biodata.models.pathway;

import java.util.List;
import java.util.Map;

public class PhysicalEntity {
	String name, type;
	Map> params;
	
	public PhysicalEntity(String id, String type, Map> params) {
		this.name = id;
		this.type = type;
		this.params = params;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy