*/
protected Collection<Vertex> getVerticesToExamine() {
List<Vertex> returned = new LinkedList<Vertex>();
// First step is to locate the class node
Vertex classVertex = getClassVertex();
ClassCollectionProperty classes = new ClassCollectionProperty(getSearchedClass());
if(classVertex==null) {
if (logger.isLoggable(Level.WARNING)) {
logger.log(Level.WARNING, "graph doesn't seem to know source class "+getSearchedClass().getCanonicalName());
}
return returned;