return(this.storableId);
}
public synchronized Vertex getVertex() {
Vertex v = new Vertex(this.id);
for(StorableAttribute bufAttribte : this.attributes) {
v.addAttribute(bufAttribte.getName(), bufAttribte.getValue());
}
v.setInnerGraph(this.innerGraphId);
return(v);
}
public synchronized String toString() {