Now that I managed to put the objects from a file into a ArrayList, I have to display them into a JTable.
These are the 3 objects contained in my ArrayList
Lieu<Double, String>(45.573715, -73.900295, "p1");
Lieu<Double, String>(45.573882, -73.899748, "p2");
Lieu<Double, String>(45.574438, -73.900099, "p3");
In the Lieu class I have the methods getX() and getY()
But I can't figure out how to diplay them in a JTable.
Longitude           Latitude
45.573715           -73.900295
45.573882           -73.899748
45.574438           -73.900099
Here's what I have for a start:
public class MonModel extends AbstractTableModel{
    @Override
    public int getColumnCount() {
        return 2;
    }
    @Override
    public int getRowCount() {
        return l.size();//l is the arraylist that contains the 3 elements
    }
    @Override
    public Object getValueAt(int rowIndex, int columnIndex) {
        if(columnIndex==0){
            return l.get(rowIndex).getX();
        }
        else if(columnIndex==1){
            return l.get(rowIndex).getY();
        }
        return null;
    }