📄 labelededge.java
字号:
package salvo.jesus.graph;/** * An extension of the <tt>LabeledGraphComponent</tt> interface specific for an <tt>Edge</tt>. * Specifically, thie interface defines methods on whether or not edges labels * take their labels from the vertices. * * @author Jesus M. Salvo Jr. * @version $Id: LabeledEdge.java,v 1.2 2002/08/29 13:20:20 jmsalvo Exp $ */public interface LabeledEdge extends LabeledGraphComponent { /** * @return whether or not it follows the labels of its vertices, including * any changes, to make sure the label for the edge is consistent with the * label of the vertex. */ public boolean isFollowVertexLabel(); /** * Specifies if the edge should follow the labels of its vertices. */ public void setFollowVertexLabel( boolean isFollow );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -