# HG changeset patch # User František Kučera # Date 1349619300 -7200 # Node ID 69f49b79342ec68355d8031756089fc92c553e2a # Parent bf06eb899671058e015261202a93ea389b10f4b1 Při přepnutí souboru obnovíme jen model, ne celou JTable. diff -r bf06eb899671 -r 69f49b79342e java/rozsirene-atributy-jedit/src/cz/frantovo/rozsireneAtributy/jedit/DokovatelnyPanel.java --- a/java/rozsirene-atributy-jedit/src/cz/frantovo/rozsireneAtributy/jedit/DokovatelnyPanel.java Sun Oct 07 15:11:42 2012 +0200 +++ b/java/rozsirene-atributy-jedit/src/cz/frantovo/rozsireneAtributy/jedit/DokovatelnyPanel.java Sun Oct 07 16:15:00 2012 +0200 @@ -40,6 +40,7 @@ private static final Logger log = Logger.getLogger(DokovatelnyPanel.class.getName()); private View view; + private Panel panel; public DokovatelnyPanel(final View view, final String position) { this.view = view; @@ -95,9 +96,15 @@ if (s.isFile() && s.canRead()) { Model m = new Model(s); - Panel p = new Panel(m); - removeAll(); - add(p, BorderLayout.CENTER); + + if (panel == null) { + panel = new Panel(m); + removeAll(); + add(panel, BorderLayout.CENTER); + } else { + panel.setModel(m); + } + } else { // TODO: zobrazit chybu log.log(Level.WARNING, "Soubor neexistuje nebo nemáme práva na čtení: {0}", s); diff -r bf06eb899671 -r 69f49b79342e java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/gui/Panel.java --- a/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/gui/Panel.java Sun Oct 07 15:11:42 2012 +0200 +++ b/java/rozsirene-atributy/src/cz/frantovo/rozsireneAtributy/gui/Panel.java Sun Oct 07 16:15:00 2012 +0200 @@ -34,6 +34,7 @@ */ public class Panel extends javax.swing.JPanel { + private static final int SLOUPEC_NÁZVU = 0; private static final Logger log = Logger.getLogger(Panel.class.getSimpleName()); private static final ResourceBundle překlady = ResourceBundle.getBundle("cz.frantovo.rozsireneAtributy.Překlady"); private Model model; @@ -45,7 +46,7 @@ initComponents(); tabulka = new JTable(model); - tabulka.getColumnModel().getColumn(0).setCellEditor(new EditorNázvůAtributů()); + nastavEditor(); tabulka.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); posuvnýPanel.setViewportView(tabulka); @@ -66,10 +67,20 @@ }); } + private void nastavEditor() { + tabulka.getColumnModel().getColumn(SLOUPEC_NÁZVU).setCellEditor(new EditorNázvůAtributů()); + } + private Model getModel() { return model; } + public void setModel(Model model) { + this.model = model; + tabulka.setModel(model); + nastavEditor(); + } + private void zobrazChybovouHlášku(String hláška, Throwable chyba) { JOptionPane.showMessageDialog(this, hláška, překlady.getString("chyba"), JOptionPane.ERROR_MESSAGE); log.log(Level.WARNING, hláška, chyba);