91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 581KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2021-06-06
  • 語言: Java
  • 標(biāo)簽: java??javafx??

資源簡介

有需要使用java開發(fā)客戶端的,可使用該項(xiàng)目,該項(xiàng)目使用javafx實(shí)現(xiàn)用web技術(shù)開發(fā)客戶端,該例子僅供參考學(xué)習(xí)使用。

資源截圖

代碼片段和文件信息

package?sample;

import?javafx.scene.Parent;
import?javafx.scene.Scene;
import?javafx.stage.Stage;

public?abstract?class?baseController?{

????private?Stage?primaryStage;

????/**
?????*?自定義實(shí)現(xiàn)
?????*?@param?primaryStage
?????*/
????public?void?Init(Stage?primaryStage?Parent?root)
????{
????????if?(primaryStage?==?null)?{
????????????return;
????????}
????????this.primaryStage?=?primaryStage;
????????primaryStage.settitle(gettitle());
????????primaryStage.setResizable(isResizable());?//?禁止自由拉伸窗口

????????Scene?scene?=?new?Scene(root?1300?800);
????????primaryStage.setScene(scene);

????????primaryStage.show();?//?顯示
????}

????/**
?????*?獲取from?title
?????*?@return
?????*/
????public?String?gettitle()?{
????????return?“MyFrom“;
????}

????/**
?????*?禁止自由拉伸窗口(禁止后不能最大化)
?????*?@return?默認(rèn)禁止,否則為true
?????*/
????public?boolean?isResizable()?{
????????return?false;
????}

????/**
?????*?關(guān)閉當(dāng)前窗口
?????*/
????public?void?close()?{
????????if?(primaryStage?!=?null)?{
????????????primaryStage.close();
????????????primaryStage?=?null;
????????}
????}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-05-29?16:28??WebViewTest\
?????目錄???????????0??2018-05-29?20:04??WebViewTest\.idea\
?????目錄???????????0??2018-05-26?18:34??WebViewTest\.idea\artifacts\
?????文件?????????734??2018-05-26?18:34??WebViewTest\.idea\compiler.xml
?????文件?????????189??2018-05-26?18:34??WebViewTest\.idea\description.html
?????文件?????????171??2018-05-26?18:34??WebViewTest\.idea\encodings.xml
?????文件?????????218??2018-05-26?18:34??WebViewTest\.idea\gradle.xml
?????目錄???????????0??2018-05-29?16:28??WebViewTest\.idea\libraries\
?????文件?????????236??2018-05-29?16:28??WebViewTest\.idea\libraries\asm_5_1_es.xml
?????文件?????????226??2018-05-29?14:08??WebViewTest\.idea\libraries\gson_2_7.xml
?????文件?????????489??2018-05-26?18:34??WebViewTest\.idea\misc.xml
?????文件?????????269??2018-05-26?18:37??WebViewTest\.idea\modules.xml
?????文件????????8919??2018-05-26?18:34??WebViewTest\.idea\uiDesigner.xml
?????文件?????????173??2018-05-26?18:34??WebViewTest\.idea\vcs.xml
?????文件???????38196??2018-05-29?20:04??WebViewTest\.idea\workspace.xml
?????目錄???????????0??2018-05-26?21:34??WebViewTest\out\
?????目錄???????????0??2018-05-26?21:34??WebViewTest\out\production\
?????目錄???????????0??2018-05-27?10:13??WebViewTest\out\production\WebViewTest\
?????目錄???????????0??2018-05-29?20:00??WebViewTest\out\production\WebViewTest\sample\
?????文件????????1211??2018-05-29?16:50??WebViewTest\out\production\WebViewTest\sample\baseController.class
?????文件?????????722??2018-05-29?20:00??WebViewTest\out\production\WebViewTest\sample\Controller.class
?????目錄???????????0??2018-05-29?20:04??WebViewTest\out\production\WebViewTest\sample\JSBridge\
?????目錄???????????0??2018-05-29?19:10??WebViewTest\out\production\WebViewTest\sample\JSBridge\Annontation\
?????文件?????????428??2018-05-29?19:10??WebViewTest\out\production\WebViewTest\sample\JSBridge\Annontation\JSImp.class
?????文件????????4346??2018-05-29?19:14??WebViewTest\out\production\WebViewTest\sample\JSBridge\RuntimeReflectasm.class
?????文件????????3454??2018-05-29?20:04??WebViewTest\out\production\WebViewTest\sample\JSBridge\WebViewHelp.class
?????目錄???????????0??2018-05-29?19:32??WebViewTest\out\production\WebViewTest\sample\Json\
?????文件????????1089??2018-05-29?19:10??WebViewTest\out\production\WebViewTest\sample\Json\EJsonType.class
?????文件??????231952??2018-05-29?14:43??WebViewTest\out\production\WebViewTest\sample\Json\gson-2.7.jar
?????文件?????????534??2018-05-29?19:32??WebViewTest\out\production\WebViewTest\sample\Json\Gsonhelp$1.class
?????文件?????????556??2018-05-29?19:32??WebViewTest\out\production\WebViewTest\sample\Json\Gsonhelp$2.class
............此處省略45個文件信息

評論

共有 條評論