Так что я не могу найти ничего о том, почему eclipse не распознает функцию "setPromptText".Он спрашивает меня, хочу ли я создать метод setPromptText:
import javafx.application.*;
import javafx.scene.*;
import javafx.stage.*;
import javafx.scene.layout.*;
import javafx.scene.control.*;
import javafx.event.*;
import javafx.geometry.*;
public class TextField extends Application {
TextField tf;
Label response;
public static void main(String [] args) {
launch(args);
}
public void start(Stage myStage) {
myStage.setTitle("Demonstrate a textfield");
FlowPane rootNode = new FlowPane(10,10);
rootNode.setAlignment(Pos.CENTER);
Scene myScene = new Scene(rootNode, 230, 140);
myStage.setScene(myScene);
response = new Label("Enter Name: ");
Button btnGetText = new Button("Get Name");
tf = new TextField();
tf.setPromptText("Enter a name.");
}
}