Skip to content
Permalink
e37ee19ff8
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (20 sloc) 416 Bytes
package edu.uconn.tripoint.export;
public abstract class CytoscapeEdge {
private int _id;
private CytoscapeNode _n1, _n2;
public CytoscapeEdge(int id, CytoscapeNode n1, CytoscapeNode n2){
_id = id;
_n1 = n1;
_n2 = n2;
}
public int getId(){
return _id;
}
public CytoscapeNode getN1(){
return _n1;
}
public CytoscapeNode getN2(){
return _n2;
}
public abstract String toJSON();
}