view analyzer/fx/src/main/resources/jp/co/ntt/oss/heapstats/fx/plugin/builtin/jvmlive/mbean/heapstatsMBean.fxml @ 272:dd85c1cbc8c8

Bug 3752: Migrate to OpenJFX 13 Reviewed-by: ykubota https://github.com/HeapStats/heapstats/pull/144
author Yasumasa Suenaga <yasuenag@gmail.com>
date Fri, 27 Sep 2019 14:47:03 +0900
parents
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8"?>

<!--
 Copyright (C) 2015-2019 Yasumasa Suenaga

 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 as published by the Free Software Foundation; either version 2
 of the License, or (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
-->

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ButtonBar?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>

<VBox prefHeight="423.0" prefWidth="500.0" spacing="5.0" xmlns:fx="http://javafx.com/fxml/1" fx:controller="jp.co.ntt.oss.heapstats.fx.plugin.builtin.jvmlive.mbean.HeapStatsMBeanController">
    <children>
        <Label fx:id="headerLabel" text="Label" />
        <ButtonBar>
            <buttons>
                <Button mnemonicParsing="false" onAction="#onInvokeResourceBtnClick" text="%dialog.config.invokeResource" />
                <Button mnemonicParsing="false" onAction="#onInvokeAllBtnClick" text="%dialog.config.invokeArciveLog" />
                <Button mnemonicParsing="false" onAction="#onInvokeSnapShotBtnClick" text="%dialog.config.invokeSnapshot" />
            </buttons>
        </ButtonBar>
        <ButtonBar>
            <buttons>
                <Button mnemonicParsing="false" onAction="#onGetResourceBtnClick" text="%dialog.config.getResourceLog" />
                <Button mnemonicParsing="false" onAction="#onGetSnapShotBtnClick" text="%dialog.config.getSnapShot" />
            </buttons>
        </ButtonBar>
      <HBox spacing="5.0">
         <children>
              <Label text="%dialog.config.current" />
              <Button mnemonicParsing="false" onAction="#onCommitBtnClick" text="%dialog.config.commit" />
         </children>
      </HBox>
        <TableView fx:id="configTable" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="0.0" minWidth="0.0" prefHeight="259.0" prefWidth="473.0" VBox.vgrow="ALWAYS">
            <columns>
                <TableColumn fx:id="keyColumn" editable="false" prefWidth="147.0" text="config" />
                <TableColumn fx:id="valueColumn" editable="true" prefWidth="290.0" text="value" />
            </columns>
            <columnResizePolicy>
                <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
            </columnResizePolicy>
        </TableView>
    </children>
</VBox>