sirve simple seleccionar que para nodo hacer example como arboles arbol java swing design-patterns error-handling

seleccionar - simple jtree example in java



¿La mejor forma de evitar que ocurra un cambio en la selección JTree? (7)

Establezca un TreeSelectionModel que implemente la semántica apropiada.

Tengo un diálogo donde cada entrada en un JTree tiene sus opciones correspondientes en un panel diferente, que se actualiza cuando cambia la selección. Si las opciones para una de las entradas se establece en un estado no válido, cuando el usuario intenta cambiar a una entrada diferente en el árbol, quiero que haya un cuadro de diálogo de error y que la selección no cambie.

Intenté hacer esto con un valueChangeListener en JTree, pero actualmente tengo que tener el método valueChanged llamado "setSelectionRow" a la selección anterior si hay un error. Para no obtener un StackOverflow, establezco un booleano "isError" en verdadero antes de hacer esto para poder ignorar el nuevo evento valueChanged. De alguna manera, tengo la corazonada de que esta no es la mejor solución. ;-)

¿Cómo lo haría en su lugar? ¿Hay un buen patrón de diseño para situaciones como esta?


No encontré una mejor manera, pero este enfoque funciona bien para mí. Sé que en Delphi fue un evento muy conveniente: "antes de cambiar la selección", donde podrías dejar de cambiar fácilmente la selección.

aquí está mi código de Java con la prevención del problema de recursión infinita

navTree.addTreeSelectionListener(new TreeSelectionListener() { boolean treeSelectionListenerEnabled = true; public void valueChanged(TreeSelectionEvent e) { if (treeSelectionListenerEnabled) { if (ok to change selection...) { ... } else { TreePath treePath = e.getOldLeadSelectionPath(); treeSelectionListenerEnabled = false; try { // prevent from leaving the last visited node navTree.setSelectionPath(treePath); } finally { treeSelectionListenerEnabled = true; } } } } });

recuerde siempre eliminar todos los oyentes que haya agregado para evitar pérdidas de memoria.

aquí hay otro enfoque:

private class VetoableTreeSelectionModel extends DefaultTreeSelectionModel { public void setSelectionPath(TreePath path){ if (allow selection change?) { super.setSelectionPath(path); } } } { navTree.setSelectionModel(new VetoableTreeSelectionModel()); }


Aquí hay un ejemplo de implementación de TreeSelectionModel que envuelve otro TreeSelectionModel pero permite que la selección sea vetada:

public class VetoableTreeSelectionModel implements TreeSelectionModel { private final ListenerList<VetoableTreeSelectionListener> m_vetoableTreeSelectionListeners = new ListenerList<VetoableTreeSelectionListener>(); private final DefaultTreeSelectionModel m_treeSelectionModel = new DefaultTreeSelectionModel(); /** * {@inheritDoc} */ public void addTreeSelectionListener(final TreeSelectionListener listener) { m_treeSelectionModel.addTreeSelectionListener(listener); } /** * {@inheritDoc} */ public void removeTreeSelectionListener(final TreeSelectionListener listener) { m_treeSelectionModel.removeTreeSelectionListener(listener); } /** * Add a vetoable tree selection listener * * @param listener the listener */ public void addVetoableTreeSelectionListener(final VetoableTreeSelectionListener listener) { m_vetoableTreeSelectionListeners.addListener(listener); } /** * Remove a vetoable tree selection listener * * @param listener the listener */ public void removeVetoableTreeSelectionListener(final VetoableTreeSelectionListener listener) { m_vetoableTreeSelectionListeners.removeListener(listener); } /** * {@inheritDoc} */ public void addPropertyChangeListener(final PropertyChangeListener listener) { m_treeSelectionModel.addPropertyChangeListener(listener); } /** * {@inheritDoc} */ public void removePropertyChangeListener(final PropertyChangeListener listener) { m_treeSelectionModel.removePropertyChangeListener(listener); } /** * {@inheritDoc} */ public void addSelectionPath(final TreePath path) { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutToAddSelectionPath(path); }}); m_treeSelectionModel.addSelectionPath(path); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public void addSelectionPaths(final TreePath[] paths) { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutToAddSelectionPaths(paths); }}); m_treeSelectionModel.addSelectionPaths(paths); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public void clearSelection() { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutToClearSelection(); }}); m_treeSelectionModel.clearSelection(); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public TreePath getLeadSelectionPath() { return m_treeSelectionModel.getLeadSelectionPath(); } /** * {@inheritDoc} */ public int getLeadSelectionRow() { return m_treeSelectionModel.getLeadSelectionRow(); } /** * {@inheritDoc} */ public int getMaxSelectionRow() { return m_treeSelectionModel.getMaxSelectionRow(); } /** * {@inheritDoc} */ public int getMinSelectionRow() { return m_treeSelectionModel.getMinSelectionRow(); } /** * {@inheritDoc} */ public RowMapper getRowMapper() { return m_treeSelectionModel.getRowMapper(); } /** * {@inheritDoc} */ public int getSelectionCount() { return m_treeSelectionModel.getSelectionCount(); } public int getSelectionMode() { return m_treeSelectionModel.getSelectionMode(); } /** * {@inheritDoc} */ public TreePath getSelectionPath() { return m_treeSelectionModel.getSelectionPath(); } /** * {@inheritDoc} */ public TreePath[] getSelectionPaths() { return m_treeSelectionModel.getSelectionPaths(); } /** * {@inheritDoc} */ public int[] getSelectionRows() { return m_treeSelectionModel.getSelectionRows(); } /** * {@inheritDoc} */ public boolean isPathSelected(final TreePath path) { return m_treeSelectionModel.isPathSelected(path); } /** * {@inheritDoc} */ public boolean isRowSelected(final int row) { return m_treeSelectionModel.isRowSelected(row); } /** * {@inheritDoc} */ public boolean isSelectionEmpty() { return m_treeSelectionModel.isSelectionEmpty(); } /** * {@inheritDoc} */ public void removeSelectionPath(final TreePath path) { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutRemoveSelectionPath(path); }}); m_treeSelectionModel.removeSelectionPath(path); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public void removeSelectionPaths(final TreePath[] paths) { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutRemoveSelectionPaths(paths); }}); m_treeSelectionModel.removeSelectionPaths(paths); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public void resetRowSelection() { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutToResetRowSelection(); }}); m_treeSelectionModel.resetRowSelection(); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public void setRowMapper(final RowMapper newMapper) { m_treeSelectionModel.setRowMapper(newMapper); } /** * {@inheritDoc} */ public void setSelectionMode(final int mode) { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutToSetSelectionMode(mode); }}); m_treeSelectionModel.setSelectionMode(mode); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public void setSelectionPath(final TreePath path) { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutToSetSelectionPath(path); }}); m_treeSelectionModel.setSelectionPath(path); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ public void setSelectionPaths(final TreePath[] paths) { try { m_vetoableTreeSelectionListeners.fireVetoableEvent(new VetoableAction<VetoableTreeSelectionListener>() { public void fireEvent(final VetoableTreeSelectionListener listener) throws EventVetoedException { listener.aboutToSetSelectionPaths(paths); }}); m_treeSelectionModel.setSelectionPaths(paths); } catch (final EventVetoedException e) { return; } } /** * {@inheritDoc} */ @Override public String toString() { return m_treeSelectionModel.toString(); }

}

Y aquí está el oyente que lo acompaña:

public interface VetoableTreeSelectionListener { /** * About to add a path to the selection * * @param path the path to add * * @throws EventVetoedException */ void aboutToAddSelectionPath(TreePath path) throws EventVetoedException; /** * About to add paths to the selection * * @param paths the paths to add * * @throws EventVetoedException */ void aboutToAddSelectionPaths(TreePath[] paths) throws EventVetoedException; /** * About to clear selection * * @throws EventVetoedException */ void aboutToClearSelection() throws EventVetoedException; /** * About to remove a selection path * * @param path the path * * @throws EventVetoedException */ void aboutRemoveSelectionPath(TreePath path) throws EventVetoedException; /** * About to remove multiple selection paths * * @param paths the paths * * @throws EventVetoedException */ void aboutRemoveSelectionPaths(TreePath[] paths) throws EventVetoedException; /** * About to reset the row selection * * @throws EventVetoedException */ void aboutToResetRowSelection() throws EventVetoedException; /** * About to set the selection mode * * @param mode the selection mode * * @throws EventVetoedException */ void aboutToSetSelectionMode(int mode) throws EventVetoedException; /** * About to set the selection path * * @param path the path * * @throws EventVetoedException */ void aboutToSetSelectionPath(TreePath path) throws EventVetoedException; /** * About to set the selection paths * * @param paths the paths * * @throws EventVetoedException */ void aboutToSetSelectionPaths(TreePath[] paths) throws EventVetoedException; }

Puedes usar tu propia implementación de ListenerList, pero entiendes la idea ...


Aquí está mi solución.

En una subclase JTree:

protected void processMouseEvent(MouseEvent e) { TreePath selPath = getPathForLocation(e.getX(), e.getY()); try { fireVetoableChange(LEAD_SELECTION_PATH_PROPERTY, getLeadSelectionPath(), selPath); } catch (PropertyVetoException ex) { // OK, we do not want change to happen return; } super.processMouseEvent(e); }

Luego en el árbol usando clase:

VetoableChangeListener vcl = new VetoableChangeListener() { public void vetoableChange(PropertyChangeEvent evt) throws PropertyVetoException { if ( evt.getPropertyName().equals(JTree.LEAD_SELECTION_PATH_PROPERTY) ) { try { <some code logic that has to be satisfied> } catch (InvalidInputException e) { throw new PropertyVetoException("", evt); } } } }; tree.addVetoableChangeListener(vcl);

El mecanismo comienza en el lugar más temprano posible. Acción del mouse interceptada, la ruta a ser seleccionada se anuncia a VetoableChangeListeners. En el VCL concreto, se examina la propiedad cambiante y, si es la selección principal, se verifica la lógica de veto. Si se necesita vetar, la VCL arroja PropertyVetoException; de lo contrario, el manejo de los eventos del mouse se realiza de la manera habitual y ocurre la selección. En resumen, esto hace que la propiedad de selección de leads se convierta en una propiedad restringida .


Tropecé con este hilo mientras investigaba una solución para el mismo problema. Primero, déjame decirte cosas que no funcionaron. Intenté registrar MouseListeners y todo eso con el árbol. El problema era que los oyentes del mouse de TreeUI estaban llegando al proceso del evento antes de que mi JTree lo hiciera, lo que significaba que era demasiado tarde para establecer una bandera o algo así. Además de que esta solución produjo un código feo y generalmente lo evitaría.

¡Entonces ahora para la solución real!
Después de usar unas pocas llamadas a Thread.dumpStack () para obtener un volcado de pila, encontré el método que buscaba anular. Extendí BasicTreeUI y anulé el "protected void selectPathForEvent (ruta TreePath, evento MouseEvent)".

Esto le dará acceso al evento del mouse que causó la selección antes de que ocurra realmente la selección. A continuación, puede usar cualquier lógica que necesite para event.consume () y devolver si desea detener la selección, hacer la selección que desee o pasarla para el procesamiento predeterminado al llamar a super.selectPathForEvent (ruta, evento);

Solo recuerda configurar la UI que creaste en JTree. Ese error desperdició algunos minutos de mi vida ;-)


Para evitar la selección, simplemente subclasé DefaultTreeSelectionModel y anulé todos los métodos para verificar los objetos que no deseaba seleccionar (instancias de "DisplayRepoOwner" en mi ejemplo a continuación). Si el objeto estaba bien para ser seleccionado, llamé al súper método; de lo contrario, no lo hice. Establecí el modelo de selección de JTree en una instancia de esa subclase.

public class MainTreeSelectionModel extends DefaultTreeSelectionModel { public void addSelectionPath(TreePath path) { if (path.getLastPathComponent() instanceof DisplayRepoOwner) { return; } super.addSelectionPath(path); } public void addSelectionPaths(TreePath[] paths) { for (TreePath tp : paths) { if (tp.getLastPathComponent() instanceof DisplayRepoOwner) { return; } } super.addSelectionPaths(paths); } public void setSelectionPath(TreePath path) { if (path.getLastPathComponent() instanceof DisplayRepoOwner) { return; } super.setSelectionPath(path); } public void setSelectionPaths(TreePath[] paths) { for (TreePath tp : paths) { if (tp.getLastPathComponent() instanceof DisplayRepoOwner) { return; } } super.setSelectionPaths(paths); }

}


No estoy seguro de que sea la mejor práctica, pero tal vez podría poner un FocusListener en el (los) componente (s) que desea validar ... llame a su validación cuando se llame al evento y luego consuma el evento si no desea que se mueva el foco porque la validación falla?

Más tarde Editar:

Al menos con java 8 (no revisé versiones anteriores) esta solución no funcionará, porque FocusEvent parece no ser un evento de bajo nivel. Por lo tanto, no puede ser consumido. Vea el Método AWTEvent.consume ()