本文整理汇总了Java中javafx.scene.Node.setId方法的典型用法代码示例。如果您正苦于以下问题:Java Node.setId方法的具体用法?Java Node.setId怎么用?Java Node.setId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.Node
的用法示例。
在下文中一共展示了Node.setId方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateOccupiedCoords
import javafx.scene.Node; //导入方法依赖的package包/类
private void updateOccupiedCoords() {
for (Node n : dispoGrid.getChildren())
n.setId("dispoGrid");
for (ADispoFaction f : file.getFactions()) {
for (ADispoBlock b : f.getSpawns()) {
int x;
int y;
if (coordCheck.isSelected()) {
x = b.getCoordTwo()[0];
y = b.getCoordTwo()[1];
} else {
x = b.getCoordOne()[0];
y = b.getCoordOne()[1];
}
if (x > 0 && x < 32 && y > 0 && y < 32)
dispoRegion[x][y].setId("occupiedCoord");
}
}
}
示例2: updateOccupiedCoords
import javafx.scene.Node; //导入方法依赖的package包/类
private void updateOccupiedCoords() {
for (Node n : dispoGrid.getChildren())
n.setId("dispoGrid");
for (DispoFaction f : file.getFactions()) {
for (DispoBlock b : f.getSpawns()) {
int x;
int y;
if (coordCheck.isSelected()) {
x = b.getSecondCoord()[0];
y = b.getSecondCoord()[1];
} else {
x = b.getFirstCoord()[0];
y = b.getFirstCoord()[1];
}
if (x > 0 && x < 32 && y > 0 && y < 32)
dispoRegion[x][y].setId("occupiedCoord");
}
}
}
示例3: addFormField
import javafx.scene.Node; //导入方法依赖的package包/类
public FormPane addFormField(String text, Node... fields) {
Label label = new Label(text);
String labelId = idText(text);
label.setId(labelId);
GridPane.setValignment(label, VPos.TOP);
int column = 0;
add(label, column++, currentRow, 1, 1);
int colspan = columns - fields.length;
int fieldIndex = 1;
for (Node field : fields) {
field.setId(labelId + "-field-" + fieldIndex);
setFormConstraints(field);
GridPane.setValignment(field, VPos.TOP);
add(field, column++, currentRow, colspan, 1);
fieldIndex++;
}
currentRow++;
column = 0;
return this;
}
示例4: setupOkButton
import javafx.scene.Node; //导入方法依赖的package包/类
private void setupOkButton() {
ButtonType okButtonType = new ButtonType("OK", ButtonBar.ButtonData.OK_DONE);
getDialogPane().getButtonTypes().add(okButtonType);
Node okButton = getDialogPane().lookupButton(okButtonType);
okButton.setDisable(true);
okButton.setId("ok-button");
okButton.disableProperty().bind(
taskNotCompleted()
.and(noTaskException())
.or(taskIsRunning())
);
}