1.添加license信息

This commit is contained in:
xufeng 2022-04-01 21:11:52 +08:00
parent 4c88bb533f
commit 9249c7c176
3 changed files with 24 additions and 5 deletions

View File

@ -53,8 +53,8 @@
3 请将如下声明文本放入每个源文件的头部注释中。
Copyright (c) [Year] [name of copyright holder]
[Software Name] is licensed under Mulan PSL v2.
Copyright (c) [2019] [xufeng]
[xJavaFxTool] is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
http://license.coscl.org.cn/MulanPSL2
@ -118,8 +118,8 @@
iii Attach the statement to the appropriate annotated syntax at the beginning of each source file.
Copyright (c) [Year] [name of copyright holder]
[Software Name] is licensed under Mulan PSL v2.
Copyright (c) [2019] [xufeng]
[xJavaFxTool] is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
http://license.coscl.org.cn/MulanPSL2

View File

@ -1,3 +1,13 @@
/**
* Copyright (c) [2019] [xufeng]
* [xJavaFxTool] is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package com.xwintop.xJavaFxTool;
import com.xwintop.xJavaFxTool.controller.IndexController;
@ -40,7 +50,7 @@ public class XJavaFxToolApplication extends Application {
FxApp.styleSheets.add(XJavaFxToolApplication.class.getResource("/css/jfoenix-main.css").toExternalForm());
// if (SystemUtil.getOsInfo().isMac()) {
//Mac下设置dock栏图标
//Mac下设置dock栏图标
// Taskbar.getTaskbar().setIconImage(ImageIO.read(XJavaFxToolApplication.class.getResourceAsStream(LOGO_PATH)));
// }

View File

@ -1,3 +1,12 @@
/**
* Copyright (c) [2019] [xufeng]
* [xJavaFxTool] is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package com.xwintop.xJavaFxTool;
import com.xwintop.xJavaFxTool.utils.XJavaFxSystemUtil;