Hi,
The other day Pierre asked me what the terms were for:
A vertex is X to its neighboring vertex.
A vertex is Y to its edges.
I believe I just made something up when I replied. However, the other night, I was doing some light reading of a graph theory textbook and found this terminology:
A vertex is adjacent to its neighboring vertex.
A vertex is incident to its edges.
As such, to reflect this more kosher terminology, Frames had the following two annotations renamed for TinkerPop 2:
@Relation -> @Adjacency ("an adjacency")
@Adjacency -> @Incident ("an incident")
While doing this, I also updated numerous classes in Frames according to a cool Iterable/Iterator technique I learned from Josh.
public Iterator<T> iterator() {
public new Iterator<T> {
// reference parent iterable class' fields
}
}
Take care,
Marko.
http://markorodriguez.com