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
18 lines (11 sloc) 223 Bytes
package edu.uconn.tripoint.export;
public abstract class CytoscapeNode {
private int _id;
public CytoscapeNode(int id){
_id = id;
}
public int getId(){
return _id;
}
public abstract String toJSON();
}