Package tiled.mapeditor.util

Examples of tiled.mapeditor.util.LayerTableModel


        bCreate.addActionListener(this);
        //TODO: create functionality is not available yet
        bCreate.setEnabled(false);
        JButton bLoad = new JButton(LOAD_BUTTON);
        bLoad.addActionListener(this);
        JTable layerTable = new JTable(new LayerTableModel(myBrush));
        layerTable.getColumnModel().getColumn(0).setPreferredWidth(32);
        layerTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        layerTable.getSelectionModel().addListSelectionListener(this);

        customPanel.setLayout(new GridBagLayout());
View Full Code Here

TOP

Related Classes of tiled.mapeditor.util.LayerTableModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.