我在github上使用此项目中的类Arrow
:https://github.com/tesis-dynaware/graph-editor
public Arrow() {
line.getStyleClass().add(STYLE_CLASS_LINE);
head.getStyleClass().add(STYLE_CLASS_HEAD);
*/
public Arrow() {
line.getStyleClass().add(STYLE_CLASS_LINE);
head.getStyleClass().add(STYLE_CLASS_HEAD);
arrowText.getStyleClass().add(textArrow);
Group n=new Group(hb,line,head);
hb.getChildren().add(t);
}
}
我想用可编辑的标签创建Arrow
。但我不知道如何处理。你能帮帮我吗?