本文整理汇总了Java中javafx.scene.control.Label.getText方法的典型用法代码示例。如果您正苦于以下问题:Java Label.getText方法的具体用法?Java Label.getText怎么用?Java Label.getText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.control.Label
的用法示例。
在下文中一共展示了Label.getText方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getLabeledBy
import javafx.scene.control.Label; //导入方法依赖的package包/类
public final String getLabeledBy() {
Parent root = node.getScene().getRoot();
Set<Node> allLabels = root.lookupAll(".label");
for (Node node2 : allLabels) {
Label label = (Label) node2;
if (label.getLabelFor() == node) {
return label.getText();
}
}
return null;
}
示例2: clickPseudoHandle
import javafx.scene.control.Label; //导入方法依赖的package包/类
@FXML
public void clickPseudoHandle(Event event){
Label lbl = (Label) event.getSource();
if(!this.joueurSelected.equals(lbl.getText())){
this.joueurSelected= null;
lbl.setFont(Font.font(null, FontWeight.NORMAL, 24));
}else{
this.joueurSelected = lbl.getText();
lbl.setFont(Font.font(null, FontWeight.BOLD, 24));
}
}
示例3: initVBox
import javafx.scene.control.Label; //导入方法依赖的package包/类
private void initVBox(){
ClassNode node = (ClassNode) getRefNode();
vbox.setPadding(new Insets(5, 0, 5, 0));
vbox.setSpacing(5);
titlePane = new VBox();
titlePane.setSpacing(5);
firstLine = new Separator();
firstLine.setMaxWidth(node.getWidth());
secondLine = new Separator();
secondLine.setMaxWidth(node.getWidth());
type = new Label();
type.setFont(Font.font("Helvetica", FontWeight.BOLD, 13));
type.setTextFill(Color.web("#4B6299"));
title = new Label();
title.setFont(Font.font("Verdana", FontWeight.BOLD, 12));
if(node.getType() == null || node.getType().equals("ABSTRACT") || node.getType().equals("CLASS")) {
type.setManaged(false);
} else {
type.setText("<<" + node.getType().toLowerCase() + ">>");
type.setAlignment(Pos.TOP_CENTER);
title.setAlignment(Pos.BOTTOM_CENTER);
type.setVisible(true);
type.setManaged(true);
}
if(node.getTitle() != null) {
title.setText(node.getTitle());
}
title.setAlignment(Pos.CENTER);
attributes = new Label(node.getAttributes());
attributes.setFont(Font.font("Verdana", 10));
operations = new Label(node.getOperations());
operations.setFont(Font.font("Verdana", 10));
if(operations.getText() == null || operations.getText().equals("")){
secondLine.setVisible(false);
}
titlePane.getChildren().add(type);
titlePane.getChildren().add(title);
vbox.getChildren().addAll(titlePane, firstLine, attributes, secondLine, operations);
}