本文整理匯總了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())
);
}