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/java/com/megatim/fdxconvert/controller/table/SubObjectTable.java | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/fdx_convert/src/main/java/com/megatim/fdxconvert/controller/table/SubObjectTable.java b/fdx_convert/src/main/java/com/megatim/fdxconvert/controller/table/SubObjectTable.java
new file mode 100644
index 0000000..dd0d612
--- /dev/null
+++ b/fdx_convert/src/main/java/com/megatim/fdxconvert/controller/table/SubObjectTable.java
@@ -0,0 +1,26 @@
+/*
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
+ */
+package com.megatim.fdxconvert.controller.table;
+
+import com.megatim.fdxconvert.model.SubObject;
+import javafx.scene.control.TableColumn;
+import javafx.scene.control.cell.PropertyValueFactory;
+
+/**
+ *
+ * @author ASUS
+ */
+public class SubObjectTable {
+ private SubObjectTable() {
+
+ }
+
+ public static TableColumn<SubObject, String> subObjectNameColumn() {
+ TableColumn<SubObject, String> column = new TableColumn("Nom de l'objet");
+ column.setCellValueFactory(new PropertyValueFactory("subObjectName"));
+ return column;
+ }
+
+}
--
Gitblit v1.10.0