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

org.biopax.ols.impl.TermPathBean Maven / Gradle / Ivy

Go to download

OBO ontology access and handling (derived from EBI PSIDEV Ontology Manager and OLS)

There is a newer version: 6.0.0
Show newest version
package org.biopax.ols.impl;

/*
 *
 */

import org.biopax.ols.TermPath;

/**
 * @author R. Cote
 * @version $Id: TermPathBean.java,v 1.1 2006/03/23 12:32:41 rglcote Exp $
 */
public class TermPathBean extends AbstractTermLinker implements TermPath {

    private long relationshipTypeId;

    /**
     * 

Represents ...

*/ private long termPathId; /** *

Represents ...

*/ private int distance; /** * @return */ public long getTermPathId() { return termPathId; } /** * @param _termPathId */ public void setTermPathId(final long _termPathId) { termPathId = _termPathId; } /** * @return */ public int getDistance() { return distance; } /** * @param _distance */ public void setDistance(final int _distance) { distance = _distance; } public long getRelationshipTypeId() { return relationshipTypeId; } public void setRelationshipTypeId(long relationshipTypeId) { this.relationshipTypeId = relationshipTypeId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy