Java tutorial
// Description: Java 7 Swing Finder JPanel implementation for AuditAction. /* * MSS Code Factory Accounting Business Application Model * * Copyright (c) 2014 Mark Sobkow * * This program is available as free software under the GNU GPL v3, or * under a commercial license from Mark Sobkow. For commercial licensing * details, please contact msobkow@sasktel.net. * * Under the terms of the GPL: * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * This source code incorporates modified modules originally licensed * under the Apache 2.0 license by MSS Code Factory including CFSecurity * (net-sourceforge-msscodefactory-2.0-cfsecurity.xml), * CFInternet (net-sourceforge-msscodefactory-2.0-cfinternet.xml), and * CFCrm 2.0 (net-sourceforge-msscodefactory-2.0-cfcrm.xml), with all of the * required models being available as part of the MSS Code Factory 1.11 * distribution source and install zips. * * You can download installations of MSS Code Factory 1.11 from * http://msscodefactory.sourceforge.net/ * * *********************************************************************** * * Code manufactured by MSS Code Factory */ package net.sourceforge.msscodefactory.cfacc.v2_0.CFAccSwing; import java.math.*; import java.sql.*; import java.text.*; import java.util.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import javax.swing.table.*; import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*; import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.Swing.*; import org.apache.commons.codec.binary.Base64; import net.sourceforge.msscodefactory.cfacc.v2_0.CFAcc.*; import net.sourceforge.msscodefactory.cfacc.v2_0.CFAccObj.*; /** * CFAccSwingAuditActionFinderJPanel Swing Finder JPanel implementation * for AuditAction. */ public class CFAccSwingAuditActionFinderJPanel extends CFJPanel implements ICFJRefreshCallback { protected ICFAccSwingSchema swingSchema = null; protected boolean swingIsInitializing = true; protected SortedMap<CFAccAuditActionPKey, ICFAccAuditActionObj> mapOfAuditAction = null; protected ICFAccAuditActionObj arrayOfAuditAction[] = null; public final static int COLID_ROW_HEADER = -1; public final static int COLID_OBJQUALIFIEDNAME = 0; public final static int COLID_AUDITACTIONID = 1; public final static int COLID_DESCRIPTION = 2; public final static int NUM_COLS = 3; public class FinderTableModel extends AbstractTableModel { public FinderTableModel() { super(); } public int getRowCount() { int retval; if (arrayOfAuditAction != null) { retval = arrayOfAuditAction.length; } else { retval = 0; } return (retval); } public int getColumnCount() { return (NUM_COLS); } public String getColumnName(int column) { String retval; switch (column) { case COLID_ROW_HEADER: retval = "Audit Action"; break; case COLID_OBJQUALIFIEDNAME: retval = "Qualified Name"; break; case COLID_AUDITACTIONID: retval = "Audit Action Id"; break; case COLID_DESCRIPTION: retval = "Description"; break; default: retval = null; break; } return (retval); } public Object getValueAt(int row, int column) { final String S_ProcName = "getValueAt"; if ((row < 0) || (column < -1)) { return (null); } if (arrayOfAuditAction == null) { return (null); } int len = arrayOfAuditAction.length; if (row >= len) { return (null); } ICFAccAuditActionObj obj = arrayOfAuditAction[row]; if (obj == null) { return (null); } Object retval; switch (column) { case COLID_ROW_HEADER: retval = obj; break; case COLID_OBJQUALIFIEDNAME: retval = obj.getObjQualifiedName(); break; case COLID_AUDITACTIONID: retval = new Short(obj.getRequiredAuditActionId()); break; case COLID_DESCRIPTION: retval = obj.getRequiredDescription(); if (retval == null) { retval = ""; } break; default: retval = null; break; } return (retval); } public boolean isCellEditable(int row, int column) { return (false); } } public class FinderTableColumnModel extends DefaultTableColumnModel { protected class QualifiedNameColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Qualified Name"); } public QualifiedNameColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_OBJQUALIFIEDNAME); setMinWidth(125); setResizable(true); } } public class AuditActionIdColumn extends TableColumn { protected class ColumnCellRenderer extends CFInt16ColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Audit Action Id"); } public AuditActionIdColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_AUDITACTIONID); setMinWidth(125); setResizable(true); } } public class DescriptionColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Description"); } public DescriptionColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_DESCRIPTION); setMinWidth(125); setResizable(true); } } public FinderTableColumnModel() { super(); addColumn(new QualifiedNameColumn()); addColumn(new AuditActionIdColumn()); addColumn(new DescriptionColumn()); } } public class FinderListSelectionModel extends DefaultListSelectionModel { public FinderListSelectionModel() { super(); setSelectionMode(ListSelectionModel.SINGLE_SELECTION); } } public class FinderListSelectionListener implements ListSelectionListener { public FinderListSelectionListener() { } public void valueChanged(ListSelectionEvent lse) { final String S_ProcName = "valueChanged"; ICFAccAuditActionObj selectedObj; if (lse.getValueIsAdjusting()) { return; } if (dataTable == null) { return; } int dataRow = dataTable.getSelectedRow(); int modelIndex = dataTable.convertRowIndexToModel(dataRow); FinderTableModel tblDataModel = getDataModel(); Object selectedRowData = tblDataModel.getValueAt(modelIndex, COLID_ROW_HEADER); if (selectedRowData != null) { if (selectedRowData instanceof ICFAccAuditActionObj) { int selectedCount = dataTable.getSelectedRowCount(); if (selectedCount <= 0) { selectedObj = null; } else if (selectedCount == 1) { selectedObj = (ICFAccAuditActionObj) selectedRowData; } else { selectedObj = null; } } else { selectedObj = null; throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedRowData", selectedRowData, "ICFAccAuditActionObj"); } } else { selectedObj = null; } Container cont = getParent(); while ((cont != null) && (!(cont instanceof CFJInternalFrame))) { cont = cont.getParent(); } if (cont != null) { CFJInternalFrame frame = (CFJInternalFrame) cont; if (frame instanceof ICFAccSwingAuditActionJPanelCommon) { ICFAccSwingAuditActionJPanelCommon jpanelCommon = (ICFAccSwingAuditActionJPanelCommon) frame; jpanelCommon.setSwingFocus(selectedObj); } } } } public class FinderListMouseAdapter extends MouseAdapter { public FinderListMouseAdapter() { super(); } public void mousePressed(MouseEvent e) { if (e.getButton() != MouseEvent.BUTTON1) { return; } if (e.getClickCount() != 2) { return; } JTable table = (JTable) e.getSource(); Point p = e.getPoint(); int row = table.rowAtPoint(p); if (row < 0) { return; } FinderTableModel model = getDataModel(); ICFAccAuditActionObj o = (ICFAccAuditActionObj) model.getValueAt(row, COLID_ROW_HEADER); if (o == null) { return; } JInternalFrame frame = swingSchema.getAuditActionFactory().newViewEditJInternalFrame(o); ((ICFAccSwingAuditActionJPanelCommon) frame).setPanelMode(CFJPanel.PanelMode.View); if (frame == null) { return; } Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { JInternalFrame myInternalFrame = (JInternalFrame) cont; myInternalFrame.getDesktopPane().add(frame); frame.setVisible(true); frame.show(); } } } protected FinderTableModel dataModel = null; protected FinderTableColumnModel dataColumnModel = null; protected FinderListSelectionModel dataListSelectionModel = null; protected FinderListMouseAdapter dataListMouseAdapter = null; protected FinderListSelectionListener dataListSelectionListener = null; protected JTable dataTable = null; protected JTableHeader dataTableHeader = null; protected JScrollPane dataScrollPane = null; protected ViewEditInternalFrameListener viewEditInternalFrameListener = null; protected class ViewEditInternalFrameListener implements InternalFrameListener { public ViewEditInternalFrameListener() { } public void internalFrameActivated(InternalFrameEvent e) { } public void internalFrameClosed(InternalFrameEvent e) { refreshMe(); } public void internalFrameClosing(InternalFrameEvent e) { } public void internalFrameDeactivated(InternalFrameEvent e) { } public void internalFrameIconified(InternalFrameEvent e) { } public void internalFrameDeiconified(InternalFrameEvent e) { } public void internalFrameOpened(InternalFrameEvent e) { } } public CFAccSwingAuditActionFinderJPanel(ICFAccSwingSchema argSchema) { super(); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); } swingSchema = argSchema; dataTable = new JTable(getDataModel(), getDataColumnModel(), getDataListSelectionModel()); dataTable.addMouseListener(getDataListMouseAdapter()); dataTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); dataTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); dataTable.setUpdateSelectionOnSort(true); dataTable.setRowHeight(25); getDataListSelectionModel().addListSelectionListener(getDataListSelectionListener()); dataScrollPane = new JScrollPane(dataTable, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED); dataScrollPane.setColumnHeader(new JViewport() { @Override public Dimension getPreferredSize() { Dimension sz = super.getPreferredSize(); sz.height = 25; return (sz); } }); dataTable.setFillsViewportHeight(true); add(dataScrollPane); loadData(true); doLayout(); swingIsInitializing = false; } public ICFAccSwingSchema getSwingSchema() { return (swingSchema); } public class AuditActionByQualNameComparator implements Comparator<ICFAccAuditActionObj> { public AuditActionByQualNameComparator() { } public int compare(ICFAccAuditActionObj lhs, ICFAccAuditActionObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { String lhsValue = lhs.getObjQualifiedName(); String rhsValue = rhs.getObjQualifiedName(); if (lhsValue == null) { if (rhsValue == null) { return (0); } else { return (-1); } } else if (rhsValue == null) { return (1); } else { return (lhsValue.compareTo(rhsValue)); } } } } protected AuditActionByQualNameComparator compareAuditActionByQualName = new AuditActionByQualNameComparator(); public void loadData(boolean forceReload) { ICFAccSchemaObj schemaObj = swingSchema.getSchema(); if ((mapOfAuditAction == null) || forceReload) { arrayOfAuditAction = null; mapOfAuditAction = schemaObj.getAuditActionTableObj().readAllAuditAction(swingIsInitializing); if (mapOfAuditAction != null) { Object objArray[] = mapOfAuditAction.values().toArray(); if (objArray != null) { int len = objArray.length; arrayOfAuditAction = new ICFAccAuditActionObj[len]; for (int i = 0; i < len; i++) { arrayOfAuditAction[i] = (ICFAccAuditActionObj) objArray[i]; } Arrays.sort(arrayOfAuditAction, compareAuditActionByQualName); } } } } public FinderTableModel getDataModel() { if (dataModel == null) { dataModel = new FinderTableModel(); } return (dataModel); } public FinderTableColumnModel getDataColumnModel() { if (dataColumnModel == null) { dataColumnModel = new FinderTableColumnModel(); } return (dataColumnModel); } public FinderListSelectionModel getDataListSelectionModel() { if (dataListSelectionModel == null) { dataListSelectionModel = new FinderListSelectionModel(); } return (dataListSelectionModel); } public FinderListSelectionListener getDataListSelectionListener() { if (dataListSelectionListener == null) { dataListSelectionListener = new FinderListSelectionListener(); } return (dataListSelectionListener); } public FinderListMouseAdapter getDataListMouseAdapter() { if (dataListMouseAdapter == null) { dataListMouseAdapter = new FinderListMouseAdapter(); } return (dataListMouseAdapter); } protected JTableHeader createDefaultTableHeader() { if (dataTableHeader == null) { dataTableHeader = new JTableHeader(getDataColumnModel()); dataTableHeader.setResizingAllowed(true); dataTableHeader.setTable(dataTable); } return (dataTableHeader); } public void doLayout() { Dimension sz = getSize(); dataScrollPane.setBounds(0, 0, sz.width, sz.height); dataScrollPane.doLayout(); } protected ViewEditInternalFrameListener getViewEditInternalFrameListener() { if (viewEditInternalFrameListener == null) { viewEditInternalFrameListener = new ViewEditInternalFrameListener(); } return (viewEditInternalFrameListener); } public void refreshMe() { loadData(true); } }