package org.openswing.swing.lookup.client; import java.lang.reflect.*; import java.math.*; import java.sql.*; import java.util.*; import java.util.Date; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.tree.*; import org.openswing.swing.client.*; import org.openswing.swing.form.client.*; import org.openswing.swing.logger.client.*; import org.openswing.swing.message.receive.java.*; import org.openswing.swing.table.client.*; import org.openswing.swing.table.columns.client.*; import org.openswing.swing.table.filter.client.*; import org.openswing.swing.table.java.*; import org.openswing.swing.tree.client.*; import org.openswing.swing.util.client.*; import org.openswing.swing.util.java.*; /** * <p>Title: OpenSwing Framework</p> * <p>Description: Lookup controller.</p> * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p> * * <p> This file is part of OpenSwing Framework. * This library is free software; you can redistribute it and/or * modify it under the terms of the (LGPL) Lesser General Public * License as published by the Free Software Foundation; * * GNU LESSER GENERAL PUBLIC LICENSE * Version 2.1, February 1999 * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * The author may be contacted at: * maurocarniel@tin.it</p> * * @author Mauro Carniel * @version 1.0 */ public class LookupController { /** mapping between lookup v.o. attributes and lookup container v.o. attributes */ private LookupMapper lookupMapper = new LookupMapper(); /** lookup value object */ private ValueObject lookupVO = null; /** lookup frame title */ private String frameTitle = "Code Selection"; /** lookup frame frame size; default: 300 x 400 pixels */ private Dimension framePreferredSize = new Dimension(300,400); /** lookup frame reference */ private LookupFrame lookupFrame = null; /** selected row on lookup grid */ private int selectedRow = -1; /** list of lookup listeners */ private ArrayList listeners = new ArrayList(); /** columns associated to lookup grid */ private Column[] colProperties = new Column[0]; /** selectable columns properties; optional */ private Boolean[] columnsSelectable = null; /** flag used to set visibility on all columns of lookup grid; default "false" */ private boolean allColumnVisible = false; /** flag used to set the selectable property on all columns of lookup grid; default: null */ private Boolean allColumnsSelectable = null; /** default preferredWidth for all columns of lookup grid; default 100 pixels */ private int allColumnPreferredWidth = 100; /** lookup container (optional) */ private Form form = null; /** lookup data source */ private LookupDataLocator lookupDataLocator = null; /** constant used in "codeSelectionWindow" property to view a grid frame when pressing the lookup button */ public static final int GRID_FRAME = 0; /** constant used in "codeSelectionWindow" property to view a tree frame when pressing the lookup button */ public static final int TREE_FRAME = 1; /** constant used in "codeSelectionWindow" property to view a tree+grid frame when pressing the lookup button */ public static final int TREE_GRID_FRAME = 2; /** constant used in "codeSelectionWindow" property to view a frame that contains a grid and a filter panel when pressing the lookup button */ public static final int GRID_AND_FILTER_FRAME = 3; /** constant used in "codeSelectionWindow" property to view a frame that contains a tree+grid and a filter panel when pressing the lookup button */ public static final int TREE_GRID_AND_FILTER_FRAME = 4; /** constant used in "codeSelectionWindow" property to view a frame that contains a grid and a custom panel when pressing the lookup button */ public static final int GRID_AND_PANEL_FRAME = 5; /** constant used in "codeSelectionWindow" property to view a frame that contains a tree+grid and a custom panel when pressing the lookup button */ public static final int TREE_GRID_AND_PANEL_FRAME = 6; /** this flag is used to set the code selection window; allowed values are: GRID_FRAME, TREE_FRAME, TREE_GRID_FRAME, GRID_AND_FILTER_FRAME, TREE_GRID_AND_FILTER_FRAME, GRID_AND_PANEL_FRAME, TREE_GRID_AND_PANEL_FRAME; default value is defined through global property ClientSettings.LOOKUP_FRAME_CONTENT that is setted to GRID_FRAME */ private int codeSelectionWindow = ClientSettings.LOOKUP_FRAME_CONTENT; /** this flag is used when codeSelectionWindow is set to TREE_FRAME: it means that user can select only leaves (by double clicking) */ private boolean allowTreeLeafSelectionOnly = true; /** this flag is used to define what to do in case of invalid code on validation task; possible values: ON_INVALID_CODE_xxx; default value: ClientSettings.ON_INVALID_CODE */ private int onInvalidCode = ClientSettings.ON_INVALID_CODE; /** constant used in "onInvalidCode" property to clear code on validation task that returns an invalid code */ public static final int ON_INVALID_CODE_CLEAR_CODE = 0; /** constant used in "onInvalidCode" property to restore the last valid code (on "" if there no exists any valid code in the past) on validation task that returns an invalid code */ public static final int ON_INVALID_CODE_RESTORE_LAST_VALID_CODE = 1; /** constant used in "onInvalidCode" property to do nothing except restore focus inside the code input field on validation task that returns an invalid code */ public static final int ON_INVALID_CODE_RESTORE_FOCUS = 2; /** last valid code */ private String lastValidCode = null; /** last invalid code */ private String lastInvalidCode = ""; /** flag used by Form.save to check if lookup control is in a valid state */ private boolean codeValid = true; /** maximum number of sorted columns */ private int maxSortedColumns = 1; /** flag used to anchor the last column on the right margin of the lookup grid, only when all columns width is lesser than grid width */ private boolean anchorLastColumn = false; /** lookup value object class name */ private String lookupValueObjectClassName = null; /** custom filter panel to show on top of the lookup grid (optional); null as default value */ private CustomFilterPanel customPanel = null; /** grid controller used with lookup grid or tree+grid frame */ private LookupGridController lookupGridController = new LookupGridController(); /** define if an insert button has to be added on top of the lookup grid; default value: <code>false</code>; if set to <code>true</code>, then the GridLookupController instance must define insertRecords method */ private boolean gridInsertButton = false; /** define if an edit button has to be added on top of the lookup grid; default value: <code>false</code>; if set to <code>true</code>, then the GridLookupController instance must define updateRecords method */ private boolean gridEditButton = false; /** define if a copy button has to be added on top of the lookup grid; default value: <code>false</code>; if set to <code>true</code>, then the GridLookupController instance must define insertRecords method */ private boolean gridCopyButton = false; /** define if a delete button has to be added on top of the lookup grid; default value: <code>false</code>; if set to <code>true</code>, then the GridLookupController instance must define deleteRecords method */ private boolean gridDeleteButton = false; /** define if a filter button has to be added on top of the lookup grid; default value: <code>false</code> */ private boolean gridFilterButton = false; /** define if an export button has to be added on top of the lookup grid; default value: <code>false</code> */ private boolean gridExportButton = false; /** combo-box filters to apply to column headers */ private HashMap comboFilters = new HashMap(); /** flag used to auto fit column sizes, according to text headers; default value: <code>ClientSettings.AUTO_FIT_COLUMNS</code> */ public boolean autoFitColumns = ClientSettings.AUTO_FIT_COLUMNS; /** define if the navigator bar must be showed on top of the lookup grid; default value: <code>ClientSettings.SHOW_NAVIGATOR_BAR_IN_LOOKUP</code> */ private boolean showNavigatorBar = ClientSettings.SHOW_NAVIGATOR_BAR_IN_LOOKUP; /** define if lookup grid frame must not be closed when selecting codes on it; default value: <code>false</code>, i.e. frame will be closed when selecting a code */ private boolean disableFrameClosing = false; /** flag used to specify if the status panel is visible; default value: <code>ClientSettings.VISIBLE_STATUS_PANEL</code> */ private boolean visibleStatusPanel = ClientSettings.VISIBLE_STATUS_PANEL; /** define if, in case of a validation task which returns an ErrorResponse, the error message must be showed instead of the standard behavior: do nothing and log error; default value: <code>false</code>, i.e. do not show a custom error message */ private boolean showCustomErrorMessage = ClientSettings.SHOW_CUSTOM_ERROR_MESSAGE_IN_LOOKUP; /** define if, in case of a validation task which returns an ErrorResponse, the error message must be showed or not; default value: <code>true</code> */ private boolean showErrorMessage = true; /** * Execute the code validation. * @param parentComponent component which contains the code input field * @param code code to validate * @return <code>true</code> if code is correcly validated, <code>false</code> otherwise */ public final void validateCode(JComponent parentComponent,String code, final LookupParent lookupParent) throws RestoreFocusOnInvalidCodeException { try { if (lastValidCode == null) { lastValidCode = lookupParent.getLookupCodeParentValue().toString(); } } catch (Exception ex1) { lastValidCode = ""; } fireLookupActionEvent(lookupParent.getValueObject()); if (code==null || code.trim().length()==0) { codeValid = true; // clear code event: reset lookup v.o. ... createVoidLookupVO(); // update lookup container aggiorno v.o. ... updateParentModel(lookupParent); // fire code changed event... fireCodeChangedEvent(lookupParent.getValueObject()); // fire code validated event... fireCodeValidatedEvent(true); } else { try { // execute code validation... final Response r = lookupDataLocator.validateCode( code ); if (r==null) { Logger.error(this.getClass().getName(),"validateCode","Error while validating lookup code: lookup data locator must always returns a Response object.",null); return; } if (!(r instanceof VOListResponse || r instanceof ErrorResponse)) { Logger.error(this.getClass().getName(),"validateCode","Error while validating lookup code: lookup data locator must always returns an instanceof VOListResponse or ErrorResponse.",null); return; } if (!r.isError() && ((VOListResponse)r).getRows().size()==1) { // code was correctly validated... codeValid = true; lastValidCode = code; lookupVO = (ValueObject)((VOListResponse)r).getRows().get(0); updateParentModel(lookupParent); // already fired inside updateParentModel method! // // fire code changed event... // fireCodeChangedEvent(lookupParent.getValueObject()); // fire code validated event... fireCodeValidatedEvent(true); } else if (!r.isError() && ((VOListResponse)r).getRows().size()>1) { // code was correctly validated but more than one row has been returned: a lookup grid frame will be opened... if (!createLookupGrid( ClientUtils.getParentWindow(parentComponent), lookupParent, new GridDataLocator() { public Response loadData( int action, int startIndex, Map filteredColumns, ArrayList currentSortedColumns, ArrayList currentSortedVersusColumns, Class valueObjectType, Map otherGridParams) { return r; } })) fireCodeValidatedEvent(false); } else { Component parentComp = ClientUtils.getParentInternalFrame(parentComponent); if (parentComp==null) parentComp = ClientUtils.getParentWindow(parentComponent); String errorMessage = ClientSettings.getInstance().getResources().getResource("Code is not correct."); if (r.isError() && r.getErrorMessage()!=null && showCustomErrorMessage) errorMessage = r.getErrorMessage(); // code was NOT correctly validated... if (onInvalidCode==ON_INVALID_CODE_CLEAR_CODE) { codeValid = true; createVoidLookupVO(); updateParentModel(lookupParent); // fire code changed event... fireCodeChangedEvent(lookupParent.getValueObject()); fireCodeValidatedEvent(false); if (showErrorMessage) OptionPane.showMessageDialog( parentComp, errorMessage, ClientSettings.getInstance().getResources().getResource("Code Validation"), JOptionPane.ERROR_MESSAGE ); } else if (onInvalidCode==ON_INVALID_CODE_RESTORE_LAST_VALID_CODE) { if (showErrorMessage) OptionPane.showMessageDialog( parentComp, errorMessage, ClientSettings.getInstance().getResources().getResource("Code Validation"), JOptionPane.ERROR_MESSAGE ); if (!lastValidCode.equals(code)) validateCode(parentComponent,lastValidCode,lookupParent); else validateCode(parentComponent,"",lookupParent); } else if (onInvalidCode==ON_INVALID_CODE_RESTORE_FOCUS) { if (!lastInvalidCode.equals(code)) { lastInvalidCode = code; if (showErrorMessage) OptionPane.showMessageDialog( parentComp, errorMessage, ClientSettings.getInstance().getResources().getResource("Code Validation"), JOptionPane.ERROR_MESSAGE ); } codeValid = false; throw new RestoreFocusOnInvalidCodeException(); } else Logger.error(this.getClass().getName(),"validateCode","Error while validating lookup code: invalid 'onInvalidCode' property value: "+onInvalidCode,null); } } catch (RestoreFocusOnInvalidCodeException ex) { throw ex; } catch (Exception ex) { createVoidLookupVO(); updateParentModel(lookupParent); // fire code changed event... fireCodeChangedEvent(lookupParent.getValueObject()); // fire code validated event... fireCodeValidatedEvent(false); Logger.error(this.getClass().getName(),"validateCode","Error while validating lookup code.",ex); } } } /** * Update the value object of the lookup parent container, only for attributes defined in LookupMapper. * @param lookupParent lookup container */ private void updateParentModel(LookupParent lookupParent) { if (lookupValueObjectClassName!=null && lookupMapper!=null) { try { // update lookup container vo from lookup vo values... Enumeration lookupAttributes = lookupMapper.getLookupChangedAttributes(); String lookupAttributeName; Method lookupMethod; String attrName = null; while (lookupAttributes.hasMoreElements()) { lookupAttributeName = (String) lookupAttributes.nextElement(); if (lookupAttributeName.length()==0) { // there has been defined a link between the whole lookup v.o. and an attribute in the container v.o. // related to an inner v.o. if (!lookupMapper.setParentAttribute( lookupParent, lookupAttributeName, Class.forName(lookupValueObjectClassName), lookupVO)) Logger.error(this.getClass().getName(), "updateParentModel", "Error while setting lookup container value object.", null); else if (form!=null) { attrName = (String)lookupMapper.getParentAttributeName(lookupAttributeName); if (attrName!=null && form!=null) form.pull(attrName); } } else if (lookupVO!=null) { String aName = lookupAttributeName; Method getter = null; Class clazz = lookupVO.getClass(); Object obj = lookupVO; while(aName.indexOf(".")!=-1) { try { getter = clazz.getMethod( "get" + aName.substring(0, 1). toUpperCase() + aName.substring(1,aName.indexOf(".")), new Class[0] ); } catch (NoSuchMethodException ex2) { getter = clazz.getMethod("is"+aName.substring(0,1).toUpperCase()+aName.substring(1,aName.indexOf(".")),new Class[0]); } obj = getter.invoke(obj,new Object[0]); if (obj==null) break; aName = aName.substring(aName.indexOf(".")+1); clazz = getter.getReturnType(); } if (obj!=null) { try { getter = clazz.getMethod( "get" + aName.substring(0, 1). toUpperCase() + aName.substring(1), new Class[0] ); } catch (NoSuchMethodException ex2) { getter = clazz.getMethod("is"+aName.substring(0,1).toUpperCase()+aName.substring(1),new Class[0]); } obj = getter.invoke(obj,new Object[0]); } // lookupMethodName = "get" + String.valueOf(Character.toUpperCase(lookupAttributeName.charAt(0))) + lookupAttributeName.substring(1); // lookupMethod = lookupVO.getClass().getMethod(lookupMethodName, new Class[0]); if (!lookupMapper.setParentAttribute( lookupParent, lookupAttributeName, getter.getReturnType(), obj )) Logger.error(this.getClass().getName(),"updateParentModel","Error while setting lookup container value object.",null); else if (form!=null) { attrName = (String)lookupMapper.getParentAttributeName(lookupAttributeName); if (attrName!=null && form!=null) form.pull(attrName); } } else { Logger.error(this.getClass().getName(),"updateParentModel","Error: lookup value object is null.",null); } } } catch (Exception ex) { ex.printStackTrace(); } catch (Error er) { er.printStackTrace(); } fireCodeChangedEvent(lookupParent.getValueObject()); } else { Logger.error(this.getClass().getName(),"updateParentModel","You must set 'lookupValueObjectClassName' property",null); } } /** * Method called by CodLookupControl when clicking on lookup button: it opens lookup frame (grid/tree/grid+tree frame). */ public final void openLookupFrame(JComponent source,LookupParent lookupParent) { openLookupFrame( ClientUtils.getParentWindow(source), lookupParent ); } /** * Method called by a grid column cell editor when user click on lookup button: it opens lookup frame (grid/tree/grid+tree frame). * @param parentFrame parent frame * @param lookupParent lookup container */ public final void openLookupFrame(Window parentFrame,final LookupParent lookupParent) { if (codeSelectionWindow==GRID_FRAME || codeSelectionWindow==GRID_AND_FILTER_FRAME || codeSelectionWindow==GRID_AND_PANEL_FRAME) createLookupGrid( parentFrame, lookupParent ); else if (codeSelectionWindow==TREE_FRAME) createLookupTree( parentFrame, lookupParent ); else if (codeSelectionWindow==TREE_GRID_FRAME || codeSelectionWindow==TREE_GRID_AND_FILTER_FRAME || codeSelectionWindow==TREE_GRID_AND_PANEL_FRAME) createLookupTreeGrid( parentFrame, lookupParent ); } /** * Method called by openLookupGrid methods to open lookup grid frame. * @param parentFrame parent frame * @param parentVO lookup container v.o. (which is updated when user will select a grid row) * @param dataLocator data source used to fetching data for lookup grid * @return <code>true</code> if grid frame was correcly opened, <code>false</code> otherwise */ private boolean createLookupGrid(Window parentFrame,LookupParent lookupParent) { return createLookupGrid( parentFrame, lookupParent, new GridDataLocator() { public Response loadData( int action, int startIndex, Map filteredColumns, ArrayList currentSortedColumns, ArrayList currentSortedVersusColumns, Class valueObjectType, Map otherGridParams) { return lookupDataLocator.loadData( action, startIndex, filteredColumns, currentSortedColumns, currentSortedVersusColumns, valueObjectType ); } } ); } /** * This method is automatically invoked by LookupGridController.doubleClick() method. */ public final void doubleClick(int rowNumber,LookupParent lookupParent) { selectedRow = rowNumber; lookupVO = (ValueObject) lookupFrame.getTable().getVOListTableModel().getObjectForRow(selectedRow); updateParentModel(lookupParent); if (!disableFrameClosing) { lookupFrame.setVisible(false); lookupFrame.dispose(); } codeValid = true; } /** * Method called by openLookupGrid methods to open lookup grid frame. * @param parentFrame parent frame * @param lookupParent lookup container (whose value object will be updated when grid row has been selected) * @param dataLocator data source used to fetching data for lookup grid * @return <code>true</code> if grid frame was correcly opened, <code>false</code> otherwise */ private boolean createLookupGrid(Window parentFrame,LookupParent lookupParent,GridDataLocator dataLocator) { fireLookupActionEvent(lookupParent.getValueObject()); selectedRow = -1; if (lookupValueObjectClassName==null) { Logger.error(this.getClass().getName(),"createLookupGrid","You must set 'lookupValueObjectClassName' property",null); return false; } try { if (lookupFrame!=null) { lookupFrame.setVisible(false); lookupFrame.dispose(); } } catch (Exception ex) { ex.printStackTrace(); } try { GridStatusPanel statusPanel = new GridStatusPanel(); Grids table = new Grids( null, 0, true, lookupValueObjectClassName, colProperties, lookupGridController, statusPanel, dataLocator, new HashMap(), true, new ArrayList(), anchorLastColumn, 0, false, false, null, comboFilters, ClientSettings.HEADER_HEIGHT, false, false, Grid.MAIN_GRID ); lookupGridController.init(this,lookupParent,table.getVOListTableModel(),table); table.setMaxSortedColumns(maxSortedColumns); // create the lookup grid frame... if (parentFrame instanceof JFrame) lookupFrame = new LookupGridFrame((JFrame)parentFrame,frameTitle, table, statusPanel); else lookupFrame = new LookupGridFrame((JDialog)parentFrame,frameTitle, table, statusPanel); lookupFrame.setSize(framePreferredSize); table.reload(); ClientUtils.centerDialog(parentFrame,lookupFrame); lookupFrame.setVisible(true); return true; } catch (Exception ex) { Logger.error(this.getClass().getName(),"createLookupGrid","Error while creating lookup grid frame.",ex); return false; } } /** * Method called by openLookupGrid methods to open lookup tree frame. * @param parentFrame parent frame * @param parentVO lookup container v.o. (which is updated when user will select a grid row) * @param dataLocator data source used to fetching data for lookup grid * @return <code>true</code> if grid frame was correcly opend, <code>false</code> otherwise */ private boolean createLookupTree(Window parentFrame,final LookupParent lookupParent) { fireLookupActionEvent(lookupParent.getValueObject()); if (lookupValueObjectClassName==null) { Logger.error(this.getClass().getName(),"createLookupTree","You must set 'lookupValueObjectClassName' property",null); return false; } try { if (lookupFrame!=null) { lookupFrame.setVisible(false); lookupFrame.dispose(); } } catch (Exception ex) { ex.printStackTrace(); } try { final TreeController container = new TreeController() { public void leftClick(DefaultMutableTreeNode node) {} public boolean rightClick(DefaultMutableTreeNode node) { return false; } public void doubleClick(DefaultMutableTreeNode node) { if (allowTreeLeafSelectionOnly && !node.isLeaf()) return; lookupVO = (ValueObject)node.getUserObject(); updateParentModel(lookupParent); if (!disableFrameClosing) { lookupFrame.setVisible(false); lookupFrame.dispose(); } } }; final TreePanel treePanel = new TreePanel(); treePanel.setTreeController(container); treePanel.setTreeDataLocator(lookupDataLocator); // create the lookup tree frame... if (parentFrame instanceof JFrame) lookupFrame = new LookupTreeFrame((JFrame)parentFrame,frameTitle, treePanel); else lookupFrame = new LookupTreeFrame((JDialog)parentFrame,frameTitle, treePanel); lookupFrame.setSize(framePreferredSize); ClientUtils.centerDialog(parentFrame,lookupFrame); lookupFrame.setVisible(true); return true; } catch (Exception ex) { Logger.error(this.getClass().getName(),"createLookupTree","Error while creating lookup tree frame.",ex); return false; } } /** * Method called by openLookupGrid methods to open lookup tree+grid frame. * @param parentFrame parent frame * @param parentVO lookup container v.o. (which is updated when user will select a grid row) * @param dataLocator data source used to fetching data for lookup grid * @return <code>true</code> if grid frame was correcly opend, <code>false</code> otherwise */ private boolean createLookupTreeGrid(Window parentFrame,final LookupParent lookupParent) { fireLookupActionEvent(lookupParent.getValueObject()); selectedRow = -1; if (lookupValueObjectClassName==null) { Logger.error(this.getClass().getName(),"createLookupTreeGrid","You must set 'lookupValueObjectClassName' property",null); return false; } try { if (lookupFrame!=null) { lookupFrame.setVisible(false); lookupFrame.dispose(); } } catch (Exception ex) { ex.printStackTrace(); } try { GridStatusPanel statusPanel = new GridStatusPanel(); final Grids table = new Grids( null, 0, true, lookupValueObjectClassName, colProperties, lookupGridController, statusPanel, new GridDataLocator() { public Response loadData( int action, int startIndex, Map filteredColumns, ArrayList currentSortedColumns, ArrayList currentSortedVersusColumns, Class valueObjectType, Map otherGridParams) { return lookupDataLocator.loadData( action, startIndex, filteredColumns, currentSortedColumns, currentSortedVersusColumns, valueObjectType ); } }, new HashMap(), true, new ArrayList(), anchorLastColumn, 0, false, false, null, comboFilters, ClientSettings.HEADER_HEIGHT, false, false, Grid.MAIN_GRID ); lookupGridController.init(this,lookupParent,table.getVOListTableModel(),table); final TreeController treeContainer = new TreeController() { public void leftClick(DefaultMutableTreeNode node) { // if the user select a tree node, // then grid is reloaded, filtered by the current selected tree node UserObject... Map map = lookupDataLocator.getLookupFrameParams(); map.put(Consts.TREE_FILTER,node.getUserObject()); table.reload(); } public boolean rightClick(DefaultMutableTreeNode node) { return false; } public void doubleClick(DefaultMutableTreeNode node) { } }; final TreePanel treePanel = new TreePanel(); treePanel.setTreeController(treeContainer); treePanel.setTreeDataLocator(new TreeDataLocator() { /** * Method called by the TreePanel to fill the tree. * @return a VOReponse containing a DefaultTreeModel object */ public Response getTreeModel(JTree tree) { return lookupDataLocator.getTreeModel(tree); } /** * @return parameters used to retrieve children nodes */ public Map getTreeNodeParams() { return lookupDataLocator.getTreeNodeParams(); } /** * Set the parameters used to retrieve children nodes. * @param treeNodeParams parameters used to retrieve children nodes */ public void setTreeNodeParams(Map treeNodeParams) { lookupDataLocator.setTreeNodeParams(treeNodeParams); } /** * @return attribute name of the v.o. contained in UserObject that is used as node name */ public String getNodeNameAttribute() { return lookupDataLocator.getNodeNameAttribute(); } /** * Set the attribute name of the v.o. contained in UserObject that is used as node name. * @param nodeNameAttribute attribute name of the v.o. contained in UserObject that is used as node name */ public void setNodeNameAttribute(String nodeNameAttribute) { lookupDataLocator.setNodeNameAttribute(nodeNameAttribute); } /** * Callback method invoked when the data loading is completed. * @param error <code>true</code> if data loading has terminated with errors, <code>false</code> otherwise */ public void loadDataCompleted(boolean error) { lookupDataLocator.loadDataCompleted(error); if (treePanel.getTree().getRowCount()>0) treePanel.getTree().setSelectionRow(0); if (treePanel.getTree().getSelectionPath()!=null) treeContainer.leftClick((DefaultMutableTreeNode)treePanel.getTree().getSelectionPath().getLastPathComponent()); } }); // treePanel.setTreeDataLocator(lookupDataLocator); // create the lookup tree grid frame... if (parentFrame instanceof JFrame) lookupFrame = new LookupTreeGridFrame((JFrame)parentFrame,frameTitle,treePanel,table, statusPanel); else lookupFrame = new LookupTreeGridFrame((JDialog)parentFrame,frameTitle,treePanel,table, statusPanel); lookupFrame.setSize(framePreferredSize); // table.reload(); ClientUtils.centerDialog(parentFrame,lookupFrame); lookupFrame.setVisible(true); return true; } catch (Exception ex) { Logger.error(this.getClass().getName(),"createLookupTreeGrid","Error while creating lookup tree grid frame.",ex); return false; } } /** * Create an empty value object for the lookup. */ private void createVoidLookupVO() { try { // check if there has been defined a link between the whole lookup v.o. and an attribute in the container v.o. // related to an inner v.o. Enumeration lookupAttributes = lookupMapper.getLookupChangedAttributes(); String lookupAttributeName; int mappingCount = 0; boolean setToNull = false; while (lookupAttributes.hasMoreElements()) { lookupAttributeName = (String) lookupAttributes.nextElement(); mappingCount++; if (lookupAttributeName.length()==0) setToNull = true; } setToNull = setToNull && mappingCount==1; if (setToNull) { // lookup v.o. is set to null this.lookupVO = null; } else { if (this.lookupValueObjectClassName==null) Logger.error(this.getClass().getName(),"createVoidLookupVO","Error while creating lookup value object: 'lookupValueObjectClassName' property is null.",null); else // lookup v.o. is created and its attributes are all null this.lookupVO = (ValueObject) Class.forName(lookupValueObjectClassName).newInstance(); } } catch (Exception ex) { ex.printStackTrace(); this.lookupVO = null; } catch (Error er) { er.printStackTrace(); this.lookupVO = null; } } /** * Set column visibility in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the grid column * @param visible column visibility state */ public final void setVisibleColumn(String lookupAttributeName, boolean visible) { try { Column infoTemp; int visibleIndex = -1; int index = -1; for (int i = 0; i < colProperties.length; i++) { if (colProperties[i].isVisible()) visibleIndex = i; if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setColumnVisible(visible); if (columnsSelectable[i]==null) colProperties[i].setColumnSelectable(visible); index = i; break; } } if (visible) { if (visibleIndex==-1) visibleIndex=0; else if ((visibleIndex-1) < colProperties.length) visibleIndex++; if ( (index > -1) && (index != visibleIndex)) { infoTemp = colProperties[index]; colProperties[index] = colProperties[visibleIndex]; colProperties[visibleIndex] = infoTemp; } } } catch (Exception ex) { ex.printStackTrace(); } } /** * Set selectable column in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the grid column * @param flag used to set the selectable column state */ public final void setSelectableColumn(String lookupAttributeName, boolean selectable) { try { for (int i = 0; i < colProperties.length; i++) { if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setColumnSelectable(selectable); this.columnsSelectable[i] = new Boolean(selectable); break; } } } catch (Exception ex) { ex.printStackTrace(); } } /** * Set column width in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the grid column * @param preferredWidth column width */ public final void setPreferredWidthColumn(String lookupAttributeName,int preferredWidth) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setPreferredWidth(preferredWidth); return; } Logger.error(this.getClass().getName(),"setPreferredWidthColumn","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * @return lookup frame title */ public final String getFrameTitle() { return frameTitle; } /** * Set lookup frame title. * @param frameTitle lookup frame title */ public final void setFrameTitle(String frameTitle) { this.frameTitle = frameTitle; } /** * Add a lookup listener. * @param listener lookup listener. */ public final void addLookupListener(LookupListener listener) { listeners.add(listener); } /** * @return lookup listeners */ public final LookupListener[] getLookupListeners() { return (LookupListener[])listeners.toArray(new LookupListener[listeners.size()]); } /** * Remove a lookup listener. * @param listener lookup listener */ public final void removeLookupListener(LookupListener listener) { listeners.remove(listener); } /** * Method called when a code is validated and also when a row is selected in the lookup grid frame. * @param validated <code>true</code> if code is correct, <code>false</code> otherwise */ private final void fireCodeValidatedEvent(boolean validated) { for(int i=0;i<listeners.size();i++) ((LookupListener)listeners.get(i)).codeValidated(validated); } /** * Method called when the code is changed. * @param parentVO value object of the lookup parent container */ private final void fireCodeChangedEvent(ValueObject parentVO) { for(int i=0;i<listeners.size();i++) ((LookupListener)listeners.get(i)).codeChanged(parentVO,lookupMapper.getParentChangedAttributes()); } /** * Method called before a code is validate and also when the lookup grid is viewed. */ private final void fireLookupActionEvent(ValueObject parentVO) { for(int i=0;i<listeners.size();i++) ((LookupListener)listeners.get(i)).beforeLookupAction(parentVO); } /** * @return columns visibility */ public final boolean isAllColumnVisible() { return this.allColumnVisible; } /** * Set column visibility for the whole columns of the lookup grid frame. * @param visible columns visibility */ public final void setAllColumnVisible(boolean visible) { this.allColumnVisible = visible; for(int i=0; i<colProperties.length; i++) { colProperties[i].setColumnVisible(visible); if (allColumnsSelectable==null) if (columnsSelectable[i]==null) colProperties[i].setColumnSelectable(visible); } } /** * @return columns width */ public final int getAllColumnPreferredWidth() { return this.allColumnPreferredWidth; } /** * Set columns width for the whole columns of the lookup grid frame. * @param preferredWidth columns width */ public final void setAllColumnPreferredWidth(int preferredWidth) { this.allColumnPreferredWidth = preferredWidth; for(int i=0; i<colProperties.length; i++) colProperties[i].setPreferredWidth(preferredWidth); } /** * @return preferred size of the lookup frame */ public final Dimension getFramePreferedSize() { return framePreferredSize; } /** * Set the preferred size of the lookup frame. * @param framePreferredSize preferred size of the lookup frame */ public final void setFramePreferedSize(Dimension framePreferredSize) { this.framePreferredSize = framePreferredSize; } /** * Force the code validation: it calles fireForceValidateEvent method. */ public final void forceValidate() { fireForceValidateEvent(); } /** * Method called by forceValidate method. */ private void fireForceValidateEvent() { for(int i=0;i<listeners.size();i++) ((LookupListener)listeners.get(i)).forceValidate(); } /** * Method called by CodLookupControl to set the Form container panel. * @param form Form container panel */ public final void setForm(Form form) { if (this.form==null) this.form = form; } /** * @return Form container panel */ public final Form getForm() { return this.form; } /** * Set a column header in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the column * @param name column header name */ public final void setHeaderColumnName(String lookupAttributeName,String name) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setHeaderColumnName(name); return; } Logger.error(this.getClass().getName(),"setHeaderColumnName","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define column's header alignement in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the column header * @param alignment column's header text horizontal alignement; possible values: "SwingConstants.LEFT", "SwingConstants.RIGHT", "SwingConstants.CENTER". */ public final void setHeaderTextAlignment(String lookupAttributeName,int alignement) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setHeaderTextHorizontalAlignment(alignement); return; } Logger.error(this.getClass().getName(),"setHeaderTextAlignment","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Set grouping setting in a numeric column. * @param lookupAttributeName attribute name that identifies the column * @param groupEnabled flag used to grouping in a numeric column */ public final void setGroupingEnabledColumn(String lookupAttributeName,boolean groupEnabled) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName) && colProperties[i] instanceof DecimalColumn) { ((DecimalColumn)colProperties[i]).setGrouping(groupEnabled); return; } else if (colProperties[i].getColumnName().equals(lookupAttributeName) && colProperties[i] instanceof IntegerColumn) { ((IntegerColumn)colProperties[i]).setGrouping(groupEnabled); return; } Logger.error(this.getClass().getName(),"setGroupingEnabledColumn","There no exists a numeric column having the attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"'",null); } /** * Set domain identifier in a domain type column. * @param lookupAttributeName attribute name that identifies the column * @param domainId domain identifier */ public final void setDomainColumn(String lookupAttributeName,String domainId) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { Column oldCol = colProperties[i]; colProperties[i] = new ComboColumn(); ((ComboColumn)colProperties[i]).setColumnName(lookupAttributeName); ((ComboColumn)colProperties[i]).setPreferredWidth(oldCol.getPreferredWidth()); ((ComboColumn)colProperties[i]).setColumnVisible(oldCol.isColumnVisible()); ((ComboColumn)colProperties[i]).setColumnSelectable(oldCol.isColumnVisible()); ((ComboColumn)colProperties[i]).setSortingOrder(oldCol.getSortingOrder()); ((ComboColumn)colProperties[i]).setSortVersus(oldCol.getSortVersus()); ((ComboColumn)colProperties[i]).setHeaderColumnName(oldCol.getHeaderColumnName()); ((ComboColumn)colProperties[i]).setDomainId(domainId); ((ComboColumn)colProperties[i]).setColumnFilterable(oldCol.isColumnFilterable()); ((ComboColumn)colProperties[i]).setColumnSortable(oldCol.isColumnSortable()); ((ComboColumn)colProperties[i]).setTextAlignment(oldCol.getTextAlignment()); ((ComboColumn)colProperties[i]).setHeaderTextHorizontalAlignment(oldCol.getHeaderTextHorizontalAlignment()); return; } Logger.error(this.getClass().getName(),"setDomainColumn","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Set the formatter to a formatted text type column column. * @param lookupAttributeName attribute name that identifies the column * @param formatter formatter to use for this column */ public final void setFormattedTextColumn(String lookupAttributeName, JFormattedTextField.AbstractFormatter formatter) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { Column oldCol = colProperties[i]; colProperties[i] = new FormattedTextColumn(); ((FormattedTextColumn)colProperties[i]).setColumnName(lookupAttributeName); ((FormattedTextColumn)colProperties[i]).setPreferredWidth(oldCol.getPreferredWidth()); ((FormattedTextColumn)colProperties[i]).setColumnVisible(oldCol.isColumnVisible()); ((FormattedTextColumn)colProperties[i]).setColumnSelectable(oldCol.isColumnVisible()); ((FormattedTextColumn)colProperties[i]).setSortingOrder(oldCol.getSortingOrder()); ((FormattedTextColumn)colProperties[i]).setSortVersus(oldCol.getSortVersus()); ((FormattedTextColumn)colProperties[i]).setHeaderColumnName(oldCol.getHeaderColumnName()); ((FormattedTextColumn)colProperties[i]).setFormatter(formatter); ((FormattedTextColumn)colProperties[i]).setColumnFilterable(oldCol.isColumnFilterable()); ((FormattedTextColumn)colProperties[i]).setColumnSortable(oldCol.isColumnSortable()); ((FormattedTextColumn)colProperties[i]).setTextAlignment(oldCol.getTextAlignment()); return; } Logger.error(this.getClass().getName(),"setFormattedTextColumn","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define if a column is sortable in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the column * @param sortable <code>true</code> if the column is sortable, <code>false</code> otherwise */ public final void setSortableColumn(String lookupAttributeName,boolean sortable) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setColumnSortable(sortable); return; } Logger.error(this.getClass().getName(),"setSortableColumn","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define if a column is filterable in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the column * @param filterable <code>true</code> if the column is filterable, <code>false</code> otherwise */ public final void setFilterableColumn(String lookupAttributeName,boolean filterable) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setColumnFilterable(filterable); return; } Logger.error(this.getClass().getName(),"setFilterableColumn","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define if a column is sorted when the lookup grid frame is opened. * Current column will be sorted as the last one: in order to specify the sorting order * for current column, use <code>setSortedColumn(String lookupAttributeName,String sortVersus,int sortingOrder)</code> method. * @param lookupAttributeName attribute name that identifies the column * @param sortVersus ascending/descending ordering versus; possible values: Consts.ASC_SORTED or Consts.DESC_SORTED */ public final void setSortedColumn(String lookupAttributeName,String sortVersus) { // calculate sortingOrder: current column will be sorted as the last one int num = 0; for(int i=0;i<colProperties.length;i++) if (!colProperties[i].getSortVersus().equals(Consts.NO_SORTED)) { num++; } for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setSortVersus(sortVersus); colProperties[i].setSortingOrder(num); return; } Logger.error(this.getClass().getName(),"setSortedColumn","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define if a column is sorted when the lookup grid frame is opened. * @param lookupAttributeName attribute name that identifies the column * @param sortVersus ascending/descending ordering versus; possible values: Consts.ASC_SORTED or Consts.DESC_SORTED * @param sortingOrder sorting order (e.g. 0, 1, 2, ...) */ public final void setSortedColumn(String lookupAttributeName,String sortVersus,int sortingOrder) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setSortVersus(sortVersus); colProperties[i].setSortingOrder(sortingOrder); return; } Logger.error(this.getClass().getName(),"setSortedColumn","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define column alignement in the lookup grid frame. * @param lookupAttributeName attribute name that identifies the column * @param alignment column text horizontal alignement; possible values: "SwingConstants.LEFT", "SwingConstants.RIGHT", "SwingConstants.CENTER". */ public final void setColumnTextAlignment(String lookupAttributeName,int alignement) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setTextAlignment(alignement); return; } Logger.error(this.getClass().getName(),"setColumnTextAlignment","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define if a column is editable in insert mode. * @param lookupAttributeName attribute name that identifies the column * @param editable <code>true</code> if the column is editable in insert mode, <code>false</code> otherwise */ public final void setColumnEditableOnInsert(String lookupAttributeName,boolean editable) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setEditableOnInsert(editable); return; } Logger.error(this.getClass().getName(),"setColumnEditableOnInsert","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define if a column is editable in edit mode. * @param lookupAttributeName attribute name that identifies the column * @param editable <code>true</code> if the column is editable in edit mode, <code>false</code> otherwise */ public final void setColumnEditableOnEdit(String lookupAttributeName,boolean editable) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setEditableOnEdit(editable); return; } Logger.error(this.getClass().getName(),"setColumnEditableOnEdit","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Set dynamic settings used to reset numeric editor properties for each grid row. * @param dynamicSettings dynamic settings used to reset numeric editor properties for each grid row */ public final void setColumnDynamicSettings(String lookupAttributeName,DecimalColumnSettings dynamicSettings) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName) && colProperties[i] instanceof DecimalColumn) { ((DecimalColumn)colProperties[i]).setDynamicSettings(dynamicSettings); return; } Logger.error(this.getClass().getName(),"setColumnDynamicSettings","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Define if an editable column is required in insert/edit mode. * @param lookupAttributeName attribute name that identifies the column * @param required <code>true</code> if the editable column is required, <code>false</code> otherwise */ public final void setColumnRequired(String lookupAttributeName,boolean required) { for(int i=0;i<colProperties.length;i++) if (colProperties[i].getColumnName().equals(lookupAttributeName)) { colProperties[i].setColumnRequired(required); return; } Logger.error(this.getClass().getName(),"setColumnRequired","The attribute '"+(lookupAttributeName==null?"null":"'"+lookupAttributeName+"'")+"' does not exist.",null); } /** * Set maximum number of sorted columns. * @param maxSortedColumns maximum number of sorted columns */ public final void setMaxSortedColumns(int maxSortedColumns) { this.maxSortedColumns = maxSortedColumns; } /** * @return maximum number of sorted columns */ public final int getMaxSortedColumns() { return this.maxSortedColumns; } /** * Add a link from an attribute of the lookup v.o. to an attribute of the lookup container v.o. * @param lookupAttributeName attribute of the lookup v.o. * @param parentAttributeName attribute of the lookup container v.o. */ public final void addLookup2ParentLink(String lookupAttributeName,String parentAttributeName) { lookupMapper.addLookup2ParentLink(lookupAttributeName,parentAttributeName); } /** * Add a link from the whole lookup value object to an equivalent inner v.o. included in the container v.o. * @param parentAttributeName attribute of the lookup container v.o., related to an inner v.o. having the same type of the lookup v.o. */ public final void addLookup2ParentLink(String parentAttributeName) { lookupMapper.addLookup2ParentLink("",parentAttributeName); } /** * Method invoked by LookupAutoCompletitionDataLocator class, in order to retrieve the * attribute in lookup value object mapped to the attribute of grid/form container. * @param parentAttributeName parent attribute name included in mapping * @return attribute name in lookup mapped to the specified parent attribute name */ public final String getLookupAttributeName(String parentAttributeName) { String lookupAttribute = lookupMapper.getLookupAttributeName(parentAttributeName); if (lookupAttribute==null && parentAttributeName.indexOf(".")!=-1) { // in case of mapping <"",innervoAttribute> (i.e. the whole lookup v.o. is mapped to a single attribute of container v.o.) // then the container "innervoAttribute.xxx" must be mapped with "xxx" lookupAttribute = parentAttributeName.substring(parentAttributeName.indexOf(".")+1); } return lookupAttribute; } /** * @return lookup data locator */ public final LookupDataLocator getLookupDataLocator() { return lookupDataLocator; } /** * Set lookup data locator. * @param lookupDataLocator lookup data locator */ public final void setLookupDataLocator(LookupDataLocator lookupDataLocator) { this.lookupDataLocator = lookupDataLocator; } /** * Set value object class name associated to the lookup: this method calls initLookupVO method. * @param lookupValeuObjectClassName value object class name associated to the lookup */ public final void setLookupValueObjectClassName(String lookupValueObjectClassName) { this.lookupValueObjectClassName = lookupValueObjectClassName; initLookupVO(lookupValueObjectClassName); } /** * @return value object class name associated to the lookup */ public final String getLookupValueObjectClassName() { return lookupValueObjectClassName; } /** * Recursive method invoked by initLookupVO() method to analyze value object and retrieve all getter methods. * @param vosAlreadyProcessed collection of inner v.o. already processed * @param getterMethods list of getter methods already retrieved * @param clazz class to analize in order to fetch its getter methods */ private void analyzeVO(String prefix,ArrayList attributes,ArrayList getterMethods,Class clazz) throws Throwable{ if (prefix.split("\\.").length>ClientSettings.MAX_NR_OF_LOOPS_IN_ANALYZE_VO) return; String attributeName = null; Method[] methods = clazz.getMethods(); for(int i=0;i<methods.length;i++) { if ((methods[i].getName().startsWith("get") || methods[i].getName().startsWith("is"))&& methods[i].getParameterTypes().length==0 && ( methods[i].getReturnType().equals(String.class) || methods[i].getReturnType().equals(java.math.BigDecimal.class) || methods[i].getReturnType().equals(java.util.Date.class) || methods[i].getReturnType().equals(java.sql.Date.class) || methods[i].getReturnType().equals(java.sql.Timestamp.class) || methods[i].getReturnType().equals(Integer.class) || methods[i].getReturnType().equals(Long.class) || methods[i].getReturnType().equals(Double.class) || methods[i].getReturnType().equals(Float.class) || methods[i].getReturnType().equals(Short.class) || methods[i].getReturnType().equals(Integer.TYPE) || methods[i].getReturnType().equals(Long.TYPE) || methods[i].getReturnType().equals(Double.TYPE) || methods[i].getReturnType().equals(Float.TYPE) || methods[i].getReturnType().equals(Short.TYPE) || methods[i].getReturnType().equals(Boolean.class)) ) { if (methods[i].getName().startsWith("get")) attributeName = methods[i].getName().substring(3); else attributeName = methods[i].getName().substring(2); if (attributeName.length()>1) attributeName = attributeName.substring(0,1).toLowerCase()+attributeName.substring(1); attributes.add(prefix+attributeName); getterMethods.add(methods[i]); } else if (methods[i].getName().startsWith("get") && methods[i].getParameterTypes().length==0 && ValueObject.class.isAssignableFrom(methods[i].getReturnType())) { attributeName = methods[i].getName().substring(3); if (attributeName.length()>1) attributeName = attributeName.substring(0,1).toLowerCase()+attributeName.substring(1); analyzeVO(prefix+attributeName+".",attributes,getterMethods,methods[i].getReturnType()); } } } /** * Method called by setLookupValueObjectClassName: it initializes lookup grid column properties. * @param lookupValueObjectClassName lookup value object class name */ private void initLookupVO(String lookupValueObjectClassName) { try { ArrayList attributes = new ArrayList(); ArrayList getterMethods = new ArrayList(); analyzeVO("",attributes,getterMethods,Class.forName(lookupValueObjectClassName)); String attributeName = null; this.colProperties = new Column[getterMethods.size()]; this.columnsSelectable = new Boolean[this.colProperties.length]; Class colType = null; Method getter = null; for(int i=0;i<getterMethods.size();i++) { getter = (Method)getterMethods.get(i); attributeName = attributes.get(i).toString(); colType = getter.getReturnType(); if (colType.equals(String.class)) colProperties[i] = new TextColumn(); else if (colType.equals(Integer.class) || colType.equals(Long.class) || colType.equals(Short.class) || colType.equals(Short.TYPE) || colType.equals(Integer.TYPE) || colType.equals(Long.TYPE)) colProperties[i] = new IntegerColumn(); else if (colType.equals(BigDecimal.class) || colType.equals(Double.class) || colType.equals(Float.class) || colType.equals(Double.TYPE) || colType.equals(Float.TYPE)) colProperties[i] = new DecimalColumn(); else if (colType.equals(Boolean.class)) colProperties[i] = new CheckBoxColumn(); else if (colType.equals(Date.class)) colProperties[i] = new DateColumn(); else if (colType.equals(java.sql.Date.class)) colProperties[i] = new DateColumn(); else if (colType.equals(Timestamp.class)) colProperties[i] = new DateColumn(); colProperties[i].setColumnName(attributeName); if (colProperties[i].getHeaderColumnName().equals("columnname")) colProperties[i].setHeaderColumnName(String.valueOf(attributeName.charAt(0)).toUpperCase()+attributeName.substring(1)); colProperties[i].setColumnVisible(this.allColumnVisible); if (this.allColumnsSelectable!=null) if (columnsSelectable[i]==null) colProperties[i].setColumnSelectable(this.allColumnsSelectable.booleanValue()); colProperties[i].setPreferredWidth(this.allColumnPreferredWidth); colProperties[i].setAutoFitColumn(autoFitColumns); } } catch (Throwable ex) { ex.printStackTrace(); this.lookupVO = null; } } /** * @return this flag is used to set the code selection window; three values are allowed: GRID_FRAME, TREE_FRAME and TREE_GRID_FRAME */ public final int getCodeSelectionWindow() { return codeSelectionWindow; } /** * Set the code selection window. * @param codeSelectionWindow three values are allowed: GRID_FRAME, TREE_FRAME and TREE_GRID_FRAME */ public final void setCodeSelectionWindow(int codeSelectionWindow) { this.codeSelectionWindow = codeSelectionWindow; } /** * @user can select only leaves (by double clicking) */ public final boolean isAllowTreeLeafSelectionOnly() { return allowTreeLeafSelectionOnly; } /** * This is used when codeSelectionWindow is set to TREE_FRAME: it means that user can select only leaves (by double clicking) * @param allowTreeLeafSelectionOnly user can select only leaves (by double clicking) */ public final void setAllowTreeLeafSelectionOnly(boolean allowTreeLeafSelectionOnly) { this.allowTreeLeafSelectionOnly = allowTreeLeafSelectionOnly; } /** * @return lookup value object */ public final ValueObject getLookupVO() { return lookupVO; } /** * @return define what to do in case of invalid code on validation task; possible values: ON_INVALID_CODE_xxx; default value: ClientSettings.ON_INVALID_CODE */ public final int getOnInvalidCode() { return onInvalidCode; } /** * Define what to do in case of invalid code on validation task: clear code on input field or restore last invalid code in the input field or restore focus in the input field * @param onInvalidCode define what to do in case of invalid code on validation task; possible values: ON_INVALID_CODE_xxx */ public final void setOnInvalidCode(int onInvalidCode) { this.onInvalidCode = onInvalidCode; } /** * @return used by Form.save to check if lookup control is in a valid state */ public final boolean isCodeValid() { return codeValid; } /** * @return define if the last column must be to anchored on the right margin of the grid, only when all columns width is lesser than grid width */ public boolean isAnchorLastColumn() { return anchorLastColumn; } /** * Define if the last column must be anchored on the right margin of the grid, only when all columns width is lesser than grid width. Default value: <code>false</code> * @param anchorLastColumn flag used to anchor the last column on the right margin of the grid, only when all columns width is lesser than grid width */ public void setAnchorLastColumn(boolean anchorLastColumn) { this.anchorLastColumn = anchorLastColumn; } /** * @return custom filter panel to show on top of the lookup grid */ public final CustomFilterPanel getCustomPanel() { return customPanel; } /** * Set the return custom filter panel to show on top of the lookup grid; this panel is showed only if "codeSelectionWindow" property is set to "xxx_AND_PANEL_FRAME" * @param customPanel return custom filter panel to show on top of the lookup grid */ public final void setCustomPanel(CustomFilterPanel customPanel) { this.customPanel = customPanel; } /** * @return grid controller used with lookup grid or tree+grid frame */ public final LookupGridController getLookupGridController() { return lookupGridController; } /** * Set grid controller used with lookup grid or tree+grid frame. * @param lookupGridController grid controller used with lookup grid or tree+grid frame */ public final void setLookupGridController(LookupGridController lookupGridController) { this.lookupGridController = lookupGridController; } /** * @return define if a copy button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define insertRecords method */ public final boolean isGridCopyButton() { return gridCopyButton; } /** * @return define if a delete button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define deleteRecords method */ public final boolean isGridDeleteButton() { return gridDeleteButton; } /** * @return define if an edit button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define updateRecords method */ public final boolean isGridEditButton() { return gridEditButton; } /** * @return define if an export button has to be added on top of the lookup grid */ public final boolean isGridExportButton() { return gridExportButton; } /** * @return define if a filter button has to be added on top of the lookup grid */ public final boolean isGridFilterButton() { return gridFilterButton; } /** * @return define if an insert button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define insertRecords method */ public final boolean isGridInsertButton() { return gridInsertButton; } /** * Define if an insert button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define insertRecords method. * @param gridInsertButton define if an insert button has to be added on top of the lookup grid */ public final void setGridInsertButton(boolean gridInsertButton) { this.gridInsertButton = gridInsertButton; } /** * Define if a filter button has to be added on top of the lookup grid. * @param gridFilterButton define if a filter button has to be added on top of the lookup grid */ public final void setGridFilterButton(boolean gridFilterButton) { this.gridFilterButton = gridFilterButton; } /** * Define if an export button has to be added on top of the lookup grid. * @param gridExportButton define if an export button has to be added on top of the lookup grid */ public final void setGridExportButton(boolean gridExportButton) { this.gridExportButton = gridExportButton; } /** * Define if an edit button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define updateRecords method. * @param gridEditButton define if an edit button has to be added on top of the lookup grid */ public final void setGridEditButton(boolean gridEditButton) { this.gridEditButton = gridEditButton; } /** * Define if a delete button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define deleteRecords method. * @param gridDeleteButton define if a delete button has to be added on top of the lookup grid */ public final void setGridDeleteButton(boolean gridDeleteButton) { this.gridDeleteButton = gridDeleteButton; } /** * Define if a copy button has to be added on top of the lookup grid; if set to <code>true</code>, then the GridLookupController instance must define insertRecords method. * @param gridCopyButton define if a copy button has to be added on top of the lookup grid */ public final void setGridCopyButton(boolean gridCopyButton) { this.gridCopyButton = gridCopyButton; } /** * Remove a combo-box filter for the specified column. * @param attributeName attribute name that identifies the column having a filter to remove */ public final void addComboFilter(String attributeName,ListFilterController filter) { comboFilters.put(attributeName,filter); } /** * Remove a combo-box filter for the specified column. * @param attributeName attribute name that identifies the column having a filter to remove */ public final void removeComboFilter(String attributeName) { comboFilters.remove(attributeName); } /** * @return define the selectable property on all columns of lookup grid */ public final Boolean isAllColumnsSelectable() { return allColumnsSelectable; } /** * Set the selectable property on all columns of lookup grid. * @param allColumnSelectable flag used to set the selectable property on all columns of lookup grid */ public final void setAllColumnsSelectable(Boolean allColumnsSelectable) { this.allColumnsSelectable = allColumnsSelectable; if (allColumnsSelectable!=null) for(int i=0; i<colProperties.length; i++) { if (columnsSelectable[i]==null) colProperties[i].setColumnSelectable(allColumnsSelectable.booleanValue()); } } /** * @return flag used to auto fit column sizes, according to text headers */ public final boolean isAutoFitColumns() { return autoFitColumns; } /** * Set auto fit column sizes, according to text headers. * Default value: <code>ClientSettings.AUTO_FIT_COLUMNS</code> * @param autoFitColumns used to auto fit column sizes, according to text headers */ public final void setAutoFitColumns(boolean autoFitColumns) { this.autoFitColumns = autoFitColumns; } /** * Define if the navigator bar must be showed on top of the lookup grid frame. * @param showNavigatorBar <code>true</code> to show the navigator bar on top of the grid lookup frame */ public final void setShowNavigatorBar(boolean showNavigatorBar) { this.showNavigatorBar = showNavigatorBar; } /** * @return define if the navigator bar must be showed on top of the lookup grid frame; default value: <code>false</code> */ public final boolean isShowNavigatorBar() { return this.showNavigatorBar; } /** * @return <code>false</code>, i.e. frame will be closed when selecting a code */ public final boolean isDisableFrameClosing() { return disableFrameClosing; } /** * Define if lookup grid frame must not be closed when selecting codes on it. * Default value: <code>false</code>, i.e. frame will be closed when selecting a code. * If this property is set to <code>true</code> then the lookup frame is not automatically closed * @param disableFrameClosing define if lookup grid frame must not be closed when selecting codes on it */ public final void setDisableFrameClosing(boolean disableFrameClosing) { this.disableFrameClosing = disableFrameClosing; } /** * Set status panel visibility. * @param visibleStatusPanel <code>true</code> to show the status panel, <code>false</code> to hide the status panel */ public final void setVisibleStatusPanel(boolean visibleStatusPanel) { this.visibleStatusPanel = visibleStatusPanel; } /** * @return status panel visibility */ public final boolean isVisibleStatusPanel() { return visibleStatusPanel; } /** * @return define if, in case of a validation task which returns an ErrorResponse, the error message must be showed instead of the standard behavior: do nothing and log error */ public final boolean isShowCustomErrorMessage() { return showCustomErrorMessage; } /** * Define if, in case of a validation task which returns an ErrorResponse, * the error message must be showed instead of the standard behavior: do nothing and log error. * Default value: <code>false</code>, i.e. do not show a custom error message * @param showCustomErrorMessage <code>true</code> to show the error message in case of validation task which returns an ErrorResponse */ public final void setShowCustomErrorMessage(boolean showCustomErrorMessage) { this.showCustomErrorMessage = showCustomErrorMessage; } /** * @return <code>true</code> if the error message must be showed in case of a validation task which returns an ErrorResponse */ public final boolean isShowErrorMessage() { return showErrorMessage; } /** * Define if, in case of a validation task which returns an ErrorResponse, the error message must be showed or not. * Default value: <code>true</code> */ public final void setShowErrorMessage(boolean showErrorMessage) { this.showErrorMessage = showErrorMessage; } /** * <p>Title: OpenSwing Framework</p> * <p>Description: Base lookup frame.</p> * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p> * * <p> This file is part of OpenSwing Framework. * This library is free software; you can redistribute it and/or * modify it under the terms of the (LGPL) Lesser General Public * License as published by the Free Software Foundation; * * GNU LESSER GENERAL PUBLIC LICENSE * Version 2.1, February 1999 * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * The author may be contacted at: * maurocarniel@tin.it</p> * * @author Mauro Carniel * @version 1.0 */ class LookupFrame extends JDialog { /** lookup grid */ protected Grids table = null; public LookupFrame(JFrame parent,String title,boolean modal) { super(parent,title,modal); } public LookupFrame(JDialog parent,String title,boolean modal) { super(parent,title,modal); } /** * @return lookup grid */ public final Grids getTable() { return table; } } /** * <p>Title: OpenSwing Framework</p> * <p>Description: Lookup Grid Frame.</p> * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p> * * <p> This file is part of OpenSwing Framework. * This library is free software; you can redistribute it and/or * modify it under the terms of the (LGPL) Lesser General Public * License as published by the Free Software Foundation; * * GNU LESSER GENERAL PUBLIC LICENSE * Version 2.1, February 1999 * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * The author may be contacted at: * maurocarniel@tin.it</p> * * @author Mauro Carniel * @version 1.0 */ class LookupGridFrame extends LookupFrame { public LookupGridFrame(JFrame parentFrame,String title,Grids table,GridStatusPanel labelPanel) { super(parentFrame,ClientSettings.getInstance().getResources().getResource(title),true); init(parentFrame,title,table,labelPanel); } public LookupGridFrame(JDialog parentFrame,String title,Grids table,GridStatusPanel labelPanel) { super(parentFrame,ClientSettings.getInstance().getResources().getResource(title),true); init(parentFrame,title,table,labelPanel); } private void init(Window parentFrame,String title,Grids table,GridStatusPanel labelPanel) { this.setDefaultCloseOperation(this.DISPOSE_ON_CLOSE); this.table = table; getContentPane().setLayout(new BorderLayout()); final JPanel p = new JPanel(); getContentPane().add(p,BorderLayout.CENTER); p.setLayout(new GridBagLayout()); p.setBorder(BorderFactory.createLineBorder(ClientSettings.GRID_FOCUS_BORDER,2)); JSplitPane split2 = new JSplitPane(JSplitPane.VERTICAL_SPLIT); split2.setDividerSize(0); JPanel gridStatusPanel = new JPanel(); gridStatusPanel.setLayout(new BorderLayout()); if (labelPanel!=null) { labelPanel.setPreferredSize(new Dimension(framePreferredSize.width,22)); if (visibleStatusPanel) gridStatusPanel.add(labelPanel,BorderLayout.SOUTH); } gridStatusPanel.add(table,BorderLayout.CENTER); split2.add(gridStatusPanel,split2.BOTTOM); split2.setDividerLocation(0); p.add(split2, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0 ,GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0)); Action exitAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { if (!LookupGridFrame.this.table.getGrid().isSearchWindowVisible()) { p.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).remove(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0)); p.getActionMap().remove("exitAction"); LookupGridFrame.this.setVisible(false); } } }; p.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0),"exitAction"); p.getActionMap().put("exitAction",exitAction); table.getGrid().addKeyListener(new KeyAdapter() { public void keyPressed(KeyEvent e) { if (e.getKeyCode()==e.VK_ESCAPE && !LookupGridFrame.this.table.getGrid().isSearchWindowVisible()) { p.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).remove(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0)); p.getActionMap().remove("exitAction"); LookupGridFrame.this.setVisible(false); } } }); JPanel topPanel = new JPanel(); BorderLayout borderLayout = new BorderLayout(); topPanel.setLayout(borderLayout); split2.add(topPanel,split2.TOP); int h = 0; if (codeSelectionWindow==GRID_AND_FILTER_FRAME) { // filter panel is added on top of the window... FilterPanel f = new FilterPanel(colProperties,table,Consts.FILTER_PANEL_ON_GRID_CLOSE_ON_EXIT); f.init(); topPanel.add(f,BorderLayout.CENTER); h = f.getPreferredSize().height; } if (codeSelectionWindow==GRID_AND_PANEL_FRAME && customPanel!=null) { // a custom panel is added on top of the window... topPanel.add(customPanel,BorderLayout.CENTER); customPanel.setLookupGrid(table); customPanel.init(); h = customPanel.getPreferredSize().height; } JPanel toolbarPanel = new JPanel(); FlowLayout flowLayout1 = new FlowLayout(FlowLayout.LEFT,5,5); toolbarPanel.setLayout(flowLayout1); if (gridInsertButton) { InsertButton b = new InsertButton(); toolbarPanel.add(b,null); table.setInsertButton(b); } if (gridEditButton) { EditButton b = new EditButton(); toolbarPanel.add(b,null); table.setEditButton(b); } if (gridCopyButton) { CopyButton b = new CopyButton(); toolbarPanel.add(b,null); table.setCopyButton(b); } if (gridInsertButton || gridEditButton || gridCopyButton) { SaveButton sb = new SaveButton(); toolbarPanel.add(sb,null); table.setSaveButton(sb); ReloadButton rb = new ReloadButton(); toolbarPanel.add(rb,null); table.setReloadButton(rb); } if (gridDeleteButton) { DeleteButton b = new DeleteButton(); toolbarPanel.add(b,null); table.setDeleteButton(b); } if (gridFilterButton) { FilterButton b = new FilterButton(); toolbarPanel.add(b,null); table.setFilterButton(b); } if (gridExportButton) { ExportButton b = new ExportButton(); toolbarPanel.add(b,null); table.setExportButton(b); } if (showNavigatorBar) { NavigatorBar b = new NavigatorBar(); toolbarPanel.add(b,null); table.setNavBar(b); } if (toolbarPanel.getComponentCount()>0) { topPanel.add(toolbarPanel, BorderLayout.SOUTH); h += toolbarPanel.getPreferredSize().height; } split2.setDividerLocation(h); } } // end inner class /** * <p>Title: OpenSwing Framework</p> * <p>Description: Lookup Tree Frame.</p> * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p> * * <p> This file is part of OpenSwing Framework. * This library is free software; you can redistribute it and/or * modify it under the terms of the (LGPL) Lesser General Public * License as published by the Free Software Foundation; * * GNU LESSER GENERAL PUBLIC LICENSE * Version 2.1, February 1999 * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * The author may be contacted at: * maurocarniel@tin.it</p> * * @author Mauro Carniel * @version 1.0 */ class LookupTreeFrame extends LookupFrame { /** lookup tree */ private TreePanel treePanel = null; public LookupTreeFrame(JFrame parentFrame,String title,TreePanel treePanel) { super(parentFrame,ClientSettings.getInstance().getResources().getResource(title),true); init(parentFrame,title,treePanel); } public LookupTreeFrame(JDialog parentFrame,String title,TreePanel treePanel) { super(parentFrame,ClientSettings.getInstance().getResources().getResource(title),true); init(parentFrame,title,treePanel); } private void init(Window parentFrame,String title,TreePanel treePanel) { this.treePanel = treePanel; getContentPane().setLayout(new BorderLayout()); getContentPane().add(new JScrollPane(treePanel),BorderLayout.CENTER); treePanel.getTree().addKeyListener(new KeyAdapter() { public void keyPressed(KeyEvent e) { if (e.getKeyCode()==e.VK_ESCAPE) { LookupTreeFrame.this.setVisible(false); } } }); } } // end inner class /** * <p>Title: OpenSwing Framework</p> * <p>Description: Lookup Tree+Grid Frame.</p> * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p> * * <p> This file is part of OpenSwing Framework. * This library is free software; you can redistribute it and/or * modify it under the terms of the (LGPL) Lesser General Public * License as published by the Free Software Foundation; * * GNU LESSER GENERAL PUBLIC LICENSE * Version 2.1, February 1999 * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * The author may be contacted at: * maurocarniel@tin.it</p> * * @author Mauro Carniel * @version 1.0 */ class LookupTreeGridFrame extends LookupFrame { /** filter tree */ private TreePanel treePanel = null; public LookupTreeGridFrame(JFrame parentFrame,String title,TreePanel treePanel,Grids table,GridStatusPanel labelPanel) { super(parentFrame,ClientSettings.getInstance().getResources().getResource(title),true); init(parentFrame,title,treePanel,table,labelPanel); } public LookupTreeGridFrame(JDialog parentFrame,String title,TreePanel treePanel,Grids table,GridStatusPanel labelPanel) { super(parentFrame,ClientSettings.getInstance().getResources().getResource(title),true); init(parentFrame,title,treePanel,table,labelPanel); } private void init(Window parentFrame,String title,TreePanel treePanel,Grids table,GridStatusPanel labelPanel) { this.treePanel = treePanel; this.table = table; getContentPane().setLayout(new BorderLayout()); JSplitPane split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT); getContentPane().add(split,BorderLayout.CENTER); split.add(new JScrollPane(treePanel),split.LEFT); // split.add(new JScrollPane(table),split.RIGHT); final JPanel p = new JPanel(); p.setLayout(new GridBagLayout()); split.add(p,split.RIGHT); split.setDividerLocation(200); JSplitPane split2 = new JSplitPane(JSplitPane.VERTICAL_SPLIT); split2.setDividerSize(0); JPanel gridStatusPanel = new JPanel(); gridStatusPanel.setLayout(new BorderLayout()); if (labelPanel!=null) { labelPanel.setPreferredSize(new Dimension(framePreferredSize.width,22)); if (visibleStatusPanel) gridStatusPanel.add(labelPanel,BorderLayout.SOUTH); } gridStatusPanel.add(table,BorderLayout.CENTER); split2.add(gridStatusPanel,split2.BOTTOM); split2.setDividerLocation(0); p.add(split2, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0 ,GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0)); treePanel.getTree().addKeyListener(new KeyAdapter() { public void keyPressed(KeyEvent e) { if (e.getKeyCode()==e.VK_ESCAPE) { p.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).remove(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0)); p.getActionMap().remove("exitAction"); LookupTreeGridFrame.this.setVisible(false); } } }); table.getGrid().addKeyListener(new KeyAdapter() { public void keyPressed(KeyEvent e) { if (e.getKeyCode()==e.VK_ESCAPE && !LookupTreeGridFrame.this.table.getGrid().isSearchWindowVisible()) { p.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).remove(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0)); p.getActionMap().remove("exitAction"); LookupTreeGridFrame.this.setVisible(false); } } }); Action exitAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { if (!LookupTreeGridFrame.this.table.getGrid().isSearchWindowVisible()) { p.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).remove(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0)); p.getActionMap().remove("exitAction"); LookupTreeGridFrame.this.setVisible(false); } } }; p.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0),"exitAction"); p.getActionMap().put("exitAction",exitAction); JPanel topPanel = new JPanel(); BorderLayout borderLayout = new BorderLayout(); topPanel.setLayout(borderLayout); split2.add(topPanel,split2.TOP); int h = 0; if (codeSelectionWindow==TREE_GRID_AND_FILTER_FRAME) { // filter panel is added on top of the window... FilterPanel f = new FilterPanel(colProperties,table,Consts.FILTER_PANEL_ON_GRID_CLOSE_ON_EXIT); f.init(); topPanel.add(f,BorderLayout.CENTER); h = f.getPreferredSize().height; } if (codeSelectionWindow==TREE_GRID_AND_PANEL_FRAME && customPanel!=null) { // a custom panel is added on top of the window... customPanel.setLookupGrid(table); customPanel.init(); topPanel.add(customPanel,BorderLayout.CENTER); h = customPanel.getPreferredSize().height; } JPanel toolbarPanel = new JPanel(); FlowLayout flowLayout1 = new FlowLayout(FlowLayout.LEFT,5,5); toolbarPanel.setLayout(flowLayout1); if (gridInsertButton) { InsertButton b = new InsertButton(); toolbarPanel.add(b,null); table.setInsertButton(b); } if (gridEditButton) { EditButton b = new EditButton(); toolbarPanel.add(b,null); table.setEditButton(b); } if (gridCopyButton) { CopyButton b = new CopyButton(); toolbarPanel.add(b,null); table.setCopyButton(b); } if (gridInsertButton || gridEditButton || gridCopyButton) { SaveButton sb = new SaveButton(); toolbarPanel.add(sb,null); table.setSaveButton(sb); ReloadButton rb = new ReloadButton(); toolbarPanel.add(rb,null); table.setReloadButton(rb); } if (gridDeleteButton) { DeleteButton b = new DeleteButton(); toolbarPanel.add(b,null); table.setDeleteButton(b); } if (gridFilterButton) { FilterButton b = new FilterButton(); toolbarPanel.add(b,null); table.setFilterButton(b); } if (gridExportButton) { ExportButton b = new ExportButton(); toolbarPanel.add(b,null); table.setExportButton(b); } if (showNavigatorBar) { NavigatorBar b = new NavigatorBar(); toolbarPanel.add(b,null); table.setNavBar(b); } if (toolbarPanel.getComponentCount()>0) { topPanel.add(toolbarPanel, BorderLayout.SOUTH); h += toolbarPanel.getPreferredSize().height; } split2.setDividerLocation(h); } } // end inner class }