From b3d0580439b9a00c7eb918085de1694151066004 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Thu, 18 Jun 2026 16:02:49 +0000
Subject: [PATCH] rename packages

---
 fdx_convert/src/main/resources/importation/validation/data/client/forms/SubObjectEditForm.fxml |   95 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 95 insertions(+), 0 deletions(-)

diff --git a/fdx_convert/src/main/resources/importation/validation/data/client/forms/SubObjectEditForm.fxml b/fdx_convert/src/main/resources/importation/validation/data/client/forms/SubObjectEditForm.fxml
new file mode 100644
index 0000000..c62a3e5
--- /dev/null
+++ b/fdx_convert/src/main/resources/importation/validation/data/client/forms/SubObjectEditForm.fxml
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.geometry.Insets?>
+<?import javafx.scene.control.Button?>
+<?import javafx.scene.control.Label?>
+<?import javafx.scene.control.TableColumn?>
+<?import javafx.scene.control.TableView?>
+<?import javafx.scene.control.TextField?>
+<?import javafx.scene.control.TitledPane?>
+<?import javafx.scene.layout.AnchorPane?>
+<?import javafx.scene.layout.HBox?>
+<?import javafx.scene.layout.VBox?>
+
+<AnchorPane id="AnchorPane" prefHeight="458.0" prefWidth="648.0" stylesheets="@../../../../../styles/custom-main-style.css" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="importation.validation.data.client.forms.SubObjectEditFormController">
+   <children>
+      <VBox alignment="CENTER" prefHeight="458.0" prefWidth="648.0" spacing="5.0">
+         <padding>
+            <Insets bottom="10.0" left="10.0" right="10.0" top="20.0" />
+         </padding>
+         <children>
+            <TitledPane collapsible="false" text="Informations sur l'objet">
+               <content>
+                  <VBox alignment="CENTER" prefHeight="0.0" prefWidth="582.0" spacing="5.0">
+                     <children>
+                        <HBox alignment="CENTER_LEFT" spacing="10.0">
+                           <children>
+                              <Label alignment="CENTER_RIGHT" minWidth="127.0" prefHeight="17.0" prefWidth="127.0" text="Nom de l'objet" />
+                              <TextField fx:id="subObjectNameTextField" minWidth="180.0" prefWidth="180.0" styleClass="square-border" stylesheets="@../../../../../styles/style.css" />
+                           </children>
+                        </HBox>
+                     </children>
+                     <padding>
+                        <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
+                     </padding>
+                  </VBox>
+               </content>
+            </TitledPane>
+            <TitledPane collapsible="false" prefHeight="322.0" prefWidth="584.0" text="Structure des champs">
+               <content>
+                  <VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0">
+                     <children>
+                        <HBox alignment="CENTER" minHeight="25.0" prefHeight="25.0" prefWidth="604.0">
+                           <children>
+                              <HBox alignment="CENTER" prefWidth="543.0" />
+                              <HBox alignment="CENTER" prefHeight="27.0" prefWidth="91.0">
+                                 <children>
+                                    <Button fx:id="addFieldButton" alignment="CENTER" contentDisplay="CENTER" minWidth="28.0" mnemonicParsing="false" prefWidth="28.0" styleClass="subtype-btn-add">
+                                       <HBox.margin>
+                                          <Insets right="5.0" />
+                                       </HBox.margin>
+                                    </Button>
+                                    <Button fx:id="updateFieldButton" alignment="CENTER" disable="true" minWidth="28.0" mnemonicParsing="false" prefWidth="28.0" styleClass="subtype-btn-update">
+                                       <HBox.margin>
+                                          <Insets right="5.0" />
+                                       </HBox.margin>
+                                    </Button>
+                                    <Button fx:id="deleteFieldButton" alignment="CENTER" disable="true" minWidth="28.0" mnemonicParsing="false" prefWidth="28.0" styleClass="subtype-btn-delete">
+                                       <HBox.margin>
+                                          <Insets right="5.0" />
+                                       </HBox.margin>
+                                    </Button>
+                                 </children>
+                              </HBox>
+                           </children>
+                           <VBox.margin>
+                              <Insets />
+                           </VBox.margin>
+                        </HBox>
+                        <HBox alignment="CENTER" prefHeight="237.0" prefWidth="604.0">
+                           <children>
+                              <TableView fx:id="subObjectsFieldsTableView">
+                                 <columns>
+                                    <TableColumn fx:id="fieldNameTableColumn" prefWidth="117.0" text="Libellé" />
+                                    <TableColumn fx:id="dataTypeTableColumn" prefWidth="149.0" text="Type de données" />
+                                    <TableColumn fx:id="isListeTableColumn" prefWidth="70.0" text="Liste ?" />
+                                    <TableColumn fx:id="formatDateTableColumn" prefWidth="138.0" text="Format Date" />
+                                    <TableColumn fx:id="separateurDateTableColumn" prefWidth="131.0" text="Séparateur Date" />
+                                 </columns>
+                              </TableView>
+                           </children>
+                           <padding>
+                              <Insets top="5.0" />
+                           </padding>
+                           <VBox.margin>
+                              <Insets />
+                           </VBox.margin>
+                        </HBox>
+                     </children>
+                  </VBox>
+               </content>
+            </TitledPane>
+         </children>
+      </VBox>
+   </children>
+</AnchorPane>

--
Gitblit v1.10.0