I am using the class Arrow
from this project on github : 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);
}
}
And I want to create Arrow
with editable label. But I don't know how to process. Can you help me please ?