Java tutorial
// Description: Java 7 Swing Finder JPanel implementation for SysCluster. /* * Code Factory Asterisk 11 Configuration Model * * Copyright (c) 2014-2015 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 software incorporates code originally Copyright (c) Mark Sobkow 2014-2015 * and licensed under the BSD 3-Clause license as written by xfree86.org: * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * (1) Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * (2) Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * (3)The name of the author may not be used to * endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * *********************************************************************** * * Code manufactured by MSS Code Factory */ package net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAstSwing; 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.v2_1.CFLib.*; import net.sourceforge.msscodefactory.cflib.v2_1.CFLib.Swing.*; import org.apache.commons.codec.binary.Base64; import net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAst.*; import net.sourceforge.msscodefactory.cfasterisk.v2_2.CFAstObj.*; /** * CFAstSwingSysClusterFinderJPanel Swing Finder JPanel implementation * for SysCluster. */ public class CFAstSwingSysClusterFinderJPanel extends CFJPanel implements ICFJRefreshCallback { protected ICFAstSwingSchema swingSchema = null; protected boolean swingIsInitializing = true; protected ICFAstClusterObj containingCluster = null; protected java.util.List<ICFAstSysClusterObj> listOfSysCluster = null; protected ICFAstSysClusterObj arrayOfSysCluster[] = null; public final static int COLID_ROW_HEADER = -1; public final static int COLID_OBJQUALIFIEDNAME = 0; public final static int COLID_SINGLETONID = 1; public final static int NUM_COLS = 2; public class FinderTableModel extends AbstractTableModel { public FinderTableModel() { super(); } public int getRowCount() { int retval; if (arrayOfSysCluster != null) { retval = arrayOfSysCluster.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 = "Cluster"; break; case COLID_OBJQUALIFIEDNAME: retval = "Qualified Name"; break; case COLID_SINGLETONID: retval = "Singleton"; 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 (arrayOfSysCluster == null) { return (null); } int len = arrayOfSysCluster.length; if (row >= len) { return (null); } ICFAstSysClusterObj obj = arrayOfSysCluster[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_SINGLETONID: retval = new Integer(obj.getRequiredSingletonId()); 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 SingletonIdColumn extends TableColumn { protected class ColumnCellRenderer extends CFInt32ColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Singleton"); } public SingletonIdColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_SINGLETONID); setMinWidth(125); setResizable(true); } } public FinderTableColumnModel() { super(); addColumn(new QualifiedNameColumn()); addColumn(new SingletonIdColumn()); } } 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"; ICFAstSysClusterObj 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 ICFAstSysClusterObj) { int selectedCount = dataTable.getSelectedRowCount(); if (selectedCount <= 0) { selectedObj = null; } else if (selectedCount == 1) { selectedObj = (ICFAstSysClusterObj) selectedRowData; } else { selectedObj = null; } } else { selectedObj = null; throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedRowData", selectedRowData, "ICFAstSysClusterObj"); } } 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 ICFAstSwingSysClusterJPanelCommon) { ICFAstSwingSysClusterJPanelCommon jpanelCommon = (ICFAstSwingSysClusterJPanelCommon) 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(); ICFAstSysClusterObj o = (ICFAstSysClusterObj) model.getValueAt(row, COLID_ROW_HEADER); if (o == null) { return; } JInternalFrame frame = swingSchema.getSysClusterFactory().newViewEditJInternalFrame(o); ((ICFAstSwingSysClusterJPanelCommon) 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 CFAstSwingSysClusterFinderJPanel(ICFAstSwingSchema 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 ICFAstSwingSchema getSwingSchema() { return (swingSchema); } public class SysClusterByQualNameComparator implements Comparator<ICFAstSysClusterObj> { public SysClusterByQualNameComparator() { } public int compare(ICFAstSysClusterObj lhs, ICFAstSysClusterObj 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 SysClusterByQualNameComparator compareSysClusterByQualName = new SysClusterByQualNameComparator(); public void loadData(boolean forceReload) { ICFAstSchemaObj schemaObj = swingSchema.getSchema(); if ((containingCluster == null) || forceReload) { CFAstAuthorization auth = schemaObj.getAuthorization(); long containingClusterId = auth.getSecClusterId(); containingCluster = schemaObj.getClusterTableObj().readClusterByIdIdx(containingClusterId); } if ((listOfSysCluster == null) || forceReload) { arrayOfSysCluster = null; listOfSysCluster = schemaObj.getSysClusterTableObj() .readSysClusterByClusterIdx(containingCluster.getRequiredId(), swingIsInitializing); if (listOfSysCluster != null) { Object objArray[] = listOfSysCluster.toArray(); if (objArray != null) { int len = objArray.length; arrayOfSysCluster = new ICFAstSysClusterObj[len]; for (int i = 0; i < len; i++) { arrayOfSysCluster[i] = (ICFAstSysClusterObj) objArray[i]; } Arrays.sort(arrayOfSysCluster, compareSysClusterByQualName); } } } } 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); } }