質問編集履歴
2
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
|
42
42
|
|
43
|
-
//javaFXを使うときはpublicをつけ
|
43
|
+
//javaFXを使うときはpublicをつける。
|
44
44
|
|
45
45
|
public class FortuneTeller2 extends Application {
|
46
46
|
|
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,6 +8,8 @@
|
|
8
8
|
|
9
9
|
import java.util.Random;
|
10
10
|
|
11
|
+
|
12
|
+
|
11
13
|
import javafx.application.Application;
|
12
14
|
|
13
15
|
import javafx.event.ActionEvent;
|
@@ -100,7 +102,7 @@
|
|
100
102
|
|
101
103
|
Button btnSend = new Button("占う");
|
102
104
|
|
103
|
-
Button
|
105
|
+
Button clear = new Button("リセット");
|
104
106
|
|
105
107
|
|
106
108
|
|
@@ -190,11 +192,13 @@
|
|
190
192
|
|
191
193
|
});
|
192
194
|
|
193
|
-
|
195
|
+
clear.setOnAction(new EventHandler<ActionEvent>() {
|
194
196
|
|
195
197
|
public void handle(ActionEvent ae) {
|
196
198
|
|
197
|
-
|
199
|
+
message.setText(null);
|
200
|
+
|
201
|
+
rootNode.getChildren().add(null);
|
198
202
|
|
199
203
|
}
|
200
204
|
|
@@ -204,7 +208,7 @@
|
|
204
208
|
|
205
209
|
// sceneにテキストフィールド、ボタン、ラベルを設置
|
206
210
|
|
207
|
-
rootNode.getChildren().addAll(message, btnSend,
|
211
|
+
rootNode.getChildren().addAll(message, btnSend, clear, response);
|
208
212
|
|
209
213
|
myStage.show();
|
210
214
|
|
@@ -214,6 +218,8 @@
|
|
214
218
|
|
215
219
|
|
216
220
|
|
221
|
+
|
222
|
+
|
217
223
|
```
|
218
224
|
|
219
225
|
Eclipse使用
|