JAL-3026 srcjar files for VARNA and log4j
[jalview.git] / srcjar / 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 }