/* package whatever; // don't place package name! */
<TableView fx:id="tableView" GridPane.columnIndex="0" GridPane.rowIndex="1" GridPane.vgrow="ALWAYS" GridPane.hgrow="ALWAYS">
    
     <columns>
          <TableColumn text="Add">
            <cellFactory>
        <CheckBoxCellFactory />
    </cellFactory>
          </TableColumn>
          <TableColumn text="Num"> 
            <cellValueFactory>
                <PropertyValueFactory property="num" />
            </cellValueFactory>
          </TableColumn>
          <TableColumn text="Image"  prefWidth="100">
            <cellValueFactory>
                <PropertyValueFactory property="image" />
            </cellValueFactory>
          </TableColumn>
          <TableColumn text="Link"  prefWidth="100">
            <cellValueFactory>
                <PropertyValueFactory property="link" />
            </cellValueFactory>
          </TableColumn>
          <TableColumn text="Title"  prefWidth="100">
            <cellValueFactory>
                <PropertyValueFactory property="title" />
            </cellValueFactory>
          </TableColumn>
          <TableColumn text="Text"  prefWidth="200">
            <cellValueFactory>
                <PropertyValueFactory property="text" />
            </cellValueFactory>
          </TableColumn>
     </columns>    
     <items>
    <FXCollections fx:factory="observableArrayList">
        <BoardThread num="1234" image="img" link="link" title="title" text="text"/>
    </FXCollections>
</items>
</TableView>  