JAL-3032 adds Java 8 functionality (2/2)
[jalview.git] / src2 / fr / orsay / lri / varna / models / treealign / GraphvizDrawableNodeValue.java
1 package fr.orsay.lri.varna.models.treealign;
2
3 /**
4  * A tree can be displayed using graphviz (using class TreeGraphviz)
5  * if the node values in the tree implement this interface.
6  * 
7  * @author Raphael Champeimont
8  */
9 public interface GraphvizDrawableNodeValue {
10         /**
11          * Returns a string that will be displayed on the node by graphviz.
12          */
13         public String toGraphvizNodeName();
14 }