/* * 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.ModeleJson; import javafx.scene.control.TableColumn; import javafx.scene.control.cell.PropertyValueFactory; /** * * @author ASUS */ public class ModeleJsonTable { private ModeleJsonTable() { } public static TableColumn objectNameColumn() { TableColumn column = new TableColumn("Libellé de la structure"); column.setCellValueFactory(new PropertyValueFactory("objectName")); return column; } }