-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalyzer.fxml
More file actions
26 lines (24 loc) · 2.63 KB
/
analyzer.fxml
File metadata and controls
26 lines (24 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.lang.String?>
<?import javafx.collections.FXCollections?>
<?import javafx.scene.control.*?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.text.Font?>
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="532.0" prefWidth="780.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2" fx:controller="AnalyzerPackage.Controller">
<Button id="browseButton" fx:id="namesOfClassesBtn" layoutX="44.0" layoutY="245.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showNamesOfClasses" prefHeight="45.9610595703125" prefWidth="200.0" text="Show Names of Classes" />
<Button id="browseButton" fx:id="namesOfFunctionsBtn" layoutX="44.0" layoutY="315.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showNamesOfFunctions" prefHeight="45.9610595703125" prefWidth="200.0" text="Show Names of Functions" />
<Button id="browseButton" fx:id="numberOfLinesBtn" layoutX="44.0" layoutY="35.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showNumberOfLines" prefHeight="45.9610595703125" prefWidth="200.0" text="Show Number of Lines" />
<Button id="browseButton" fx:id="numberOfClassesBtn" layoutX="44.0" layoutY="105.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showNumberOfClasses" prefHeight="45.9610595703125" prefWidth="200.0" text="Show Number of Classes" />
<Button id="browseButton" fx:id="numberOfFuntionsBtn" layoutX="44.0" layoutY="175.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showNumberOfFunctions" prefHeight="45.9610595703125" prefWidth="200.0" text="Show Number of Functions" />
<Button id="browseButton" fx:id="cyclomaticComplexityBtn" layoutX="44.0" layoutY="385.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showCyclomaticComplexity" prefHeight="45.9610595703125" prefWidth="200.0" text="Show Cyclomatic Complexity" />
<Button id="browseButton" fx:id="maintainabilityIndexBtn" layoutX="44.0" layoutY="455.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showMaintainabilityIndex" prefHeight="45.9610595703125" prefWidth="200.0" text="Show Maintainability Index" />
<TextArea fx:id="outputTextArea" layoutX="273.0" layoutY="35.0" prefHeight="465.96115957031" prefWidth="493.0" wrapText="true" />
</Pane>