Projekt

Obecné

Profil

« Předchozí | Další » 

Revize b639237c

Přidáno uživatelem Michal Horký před více než 4 roky(ů)

#7794

Přechod na Java 11. Vytvoření release verze.

Zobrazit rozdíly:

project/Deserializer/src/Deserializer.java
52 52
		layout.setSpacing(10.0);
53 53
		
54 54
		Label forInputFile = new Label("Soubor k deserializaci:");
55
		Label inputFile = new Label("    Je?t? nebyl vybr?n ??dn? soubor...");
55
		Label inputFile = new Label("    Ještě nebyl vybrán žádný soubor...");
56 56
		inputFile.setStyle("-fx-font-style: italic;");
57 57
		VBox forInput = new VBox();
58 58
		forInput.getChildren().add(forInputFile);
59 59
		forInput.getChildren().add(inputFile);
60 60
		
61
		Label forOutputFile = new Label("V?stupn? soubor:");
62
		Label outputFile = new Label("    Je?t? nebyl vybr?n ??dn? soubor...");
61
		Label forOutputFile = new Label("Výstupní soubor:");
62
		Label outputFile = new Label("    Ještě nebyl vybrán žádný soubor...");
63 63
		outputFile.setStyle("-fx-font-style: italic;");
64 64
		VBox forOutput = new VBox();
65 65
		forOutput.getChildren().add(forOutputFile);
66 66
		forOutput.getChildren().add(outputFile);
67 67
		
68
		convert = new Button("P?ev?st");
68
		convert = new Button("Převést");
69 69
		convert.setOnAction(event -> {
70 70
			// a.data a b.data are customers test files (binary files).
71 71
			convert.setDisable(true);
......
73 73
			thread.start();
74 74
		});
75 75
		convert.setDisable(!testing);
76
		Button setInputFile = new Button("Vstupn? soubor");
76
		Button setInputFile = new Button("Vstupní soubor");
77 77
		setInputFile.setOnAction(event -> {
78 78
			FileChooser fCh = new FileChooser();
79 79
			fCh.setInitialDirectory(new File("."));
......
87 87
				convert.setDisable(this.inputFile == null || this.outputFile == null);
88 88
			}
89 89
		});
90
		Button setOutputFile = new Button("V?stupn? soubor");
90
		Button setOutputFile = new Button("Výstupní soubor");
91 91
		setOutputFile.setOnAction(event -> {
92 92
			FileChooser fCh = new FileChooser();
93 93
			fCh.setInitialDirectory(new File("."));

Také k dispozici: Unified diff