Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7401e7d9f3cad254855a40fb677668d49b507e39 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<!-- 
	Do not edit this file it is generated by e(fx)clipse from ../src/org/eclipse/fx/code/compensator/project/jdt/handler/NewClassPane.fxgraph
-->

<?import java.lang.*?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.ToggleGroup?>
<?import org.eclipse.fx.ui.panes.GridData?>
<?import org.eclipse.fx.ui.panes.GridLayoutPane?>

<GridLayoutPane xmlns:fx="http://javafx.com/fxml" fx:controller="org.eclipse.fx.code.compensator.project.jdt.handler.NewClassPaneController" numColumns="3">
	<fx:define>
		<ToggleGroup fx:id="visibilityMods"/> 
	</fx:define>

	<children>
		<Label text="Package"/> 
		<TextField fx:id="packageField"> 
			<GridLayoutPane.constraint>
				<GridData grabExcessHorizontalSpace="true" horizontalAlignment="FILL"/> 
			</GridLayoutPane.constraint>
		</TextField>
		<Button text="Browse ..."/> 
		<Label text="Name"/> 
		<TextField fx:id="className"> 
			<GridLayoutPane.constraint>
				<GridData grabExcessHorizontalSpace="true" horizontalAlignment="FILL"/> 
			</GridLayoutPane.constraint>
		</TextField>
		<Label/> 
		<Label text="Modifier"/> 
		<GridLayoutPane numColumns="3"> 
			<children>
				<RadioButton fx:id="publicModifier" text="public" selected="true" toggleGroup="$visibilityMods"/> 
				<RadioButton fx:id="packageModifier" text="package" toggleGroup="$visibilityMods"/> 
				<RadioButton fx:id="protectedModifier" text="protected" toggleGroup="$visibilityMods"/> 
			</children>
		</GridLayoutPane>
		<Label/> 
		<Label/> 
		<GridLayoutPane numColumns="4"> 
			<children>
				<CheckBox fx:id="abstractModifier" text="abstract"/> 
				<CheckBox fx:id="finalModifier" text="final"/> 
			</children>
		</GridLayoutPane>
		<Label/> 
	</children>
</GridLayoutPane>

Back to the top