v0.0.3
Some checks failed
CI/CD / build-deploy (pull_request) Failing after 1m27s

This commit is contained in:
Timi
2026-05-10 16:27:33 +08:00
parent 7119d1175c
commit 17eb4af81c
9 changed files with 245 additions and 119 deletions

View File

@@ -2,6 +2,7 @@ package com.imyeyu.fx.utils;
import javafx.stage.FileChooser;
import javafx.stage.Window;
import lombok.Getter;
import java.io.File;
import java.util.List;
@@ -13,6 +14,7 @@ import java.util.Objects;
* @author 夜雨
* @version 2022-04-14 19:38
*/
@Getter
public class FileSelector {
/** 选择器 */
@@ -91,13 +93,4 @@ public class FileSelector {
public File save(Window window) {
return chooser.showSaveDialog(window);
}
/**
* 获取选择器
*
* @return 选择器
*/
public FileChooser getChooser() {
return chooser;
}
}