Java tutorial
// Description: Java 7 Swing Finder JPanel implementation for TSecGroup. /* * CF Customer Information Managerment template model * * Copyright (c) 2010-2014 Mark Sobkow * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * *********************************************************************** * * Code manufactured by MSS Code Factory */ package net.sourceforge.msscodefactory.cfinternet.v2_0.CFInternetSwing; 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.cfinternet.v2_0.CFInternet.*; import net.sourceforge.msscodefactory.cfinternet.v2_0.CFInternetObj.*; /** * CFInternetSwingTSecGroupFinderJPanel Swing Finder JPanel implementation * for TSecGroup. */ public class CFInternetSwingTSecGroupFinderJPanel extends CFJPanel implements ICFJRefreshCallback { protected ICFInternetSwingSchema swingSchema = null; protected boolean swingIsInitializing = true; protected ICFInternetTenantObj containingTenant = null; protected SortedMap<CFInternetTSecGroupPKey, ICFInternetTSecGroupObj> mapOfTSecGroup = null; protected ICFInternetTSecGroupObj arrayOfTSecGroup[] = null; public final static int COLID_ROW_HEADER = -1; public final static int COLID_OBJQUALIFIEDNAME = 0; public final static int COLID_TSECGROUPID = 1; public final static int COLID_NAME = 2; public final static int NUM_COLS = 3; public class FinderTableModel extends AbstractTableModel { public FinderTableModel() { super(); } public int getRowCount() { int retval; if (arrayOfTSecGroup != null) { retval = arrayOfTSecGroup.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 = "Tenant Security Group"; break; case COLID_OBJQUALIFIEDNAME: retval = "Qualified Name"; break; case COLID_TSECGROUPID: retval = "TSecurity Group Id"; break; case COLID_NAME: retval = "Name"; 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 (arrayOfTSecGroup == null) { return (null); } int len = arrayOfTSecGroup.length; if (row >= len) { return (null); } ICFInternetTSecGroupObj obj = arrayOfTSecGroup[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_TSECGROUPID: retval = new Integer(obj.getRequiredTSecGroupId()); break; case COLID_NAME: retval = obj.getRequiredName(); 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 TSecGroupIdColumn extends TableColumn { protected class ColumnCellRenderer extends CFInt32ColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("TSecurity Group Id"); } public TSecGroupIdColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_TSECGROUPID); setMinWidth(125); setResizable(true); } } public class NameColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Name"); } public NameColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_NAME); setMinWidth(125); setResizable(true); } } public FinderTableColumnModel() { super(); addColumn(new QualifiedNameColumn()); addColumn(new TSecGroupIdColumn()); addColumn(new NameColumn()); } } 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"; ICFInternetTSecGroupObj 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 ICFInternetTSecGroupObj) { int selectedCount = dataTable.getSelectedRowCount(); if (selectedCount <= 0) { selectedObj = null; } else if (selectedCount == 1) { selectedObj = (ICFInternetTSecGroupObj) selectedRowData; } else { selectedObj = null; } } else { selectedObj = null; throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedRowData", selectedRowData, "ICFInternetTSecGroupObj"); } } 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 ICFInternetSwingTSecGroupJPanelCommon) { ICFInternetSwingTSecGroupJPanelCommon jpanelCommon = (ICFInternetSwingTSecGroupJPanelCommon) 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(); ICFInternetTSecGroupObj o = (ICFInternetTSecGroupObj) model.getValueAt(row, COLID_ROW_HEADER); if (o == null) { return; } JInternalFrame frame = swingSchema.getTSecGroupFactory().newViewEditJInternalFrame(o); ((ICFInternetSwingTSecGroupJPanelCommon) 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 CFInternetSwingTSecGroupFinderJPanel(ICFInternetSwingSchema 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 ICFInternetSwingSchema getSwingSchema() { return (swingSchema); } public class TSecGroupByQualNameComparator implements Comparator<ICFInternetTSecGroupObj> { public TSecGroupByQualNameComparator() { } public int compare(ICFInternetTSecGroupObj lhs, ICFInternetTSecGroupObj 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 TSecGroupByQualNameComparator compareTSecGroupByQualName = new TSecGroupByQualNameComparator(); public void loadData(boolean forceReload) { ICFInternetSchemaObj schemaObj = swingSchema.getSchema(); if ((containingTenant == null) || forceReload) { CFInternetAuthorization auth = schemaObj.getAuthorization(); long containingTenantId = auth.getSecTenantId(); containingTenant = schemaObj.getTenantTableObj().readTenantByIdIdx(containingTenantId); } if ((mapOfTSecGroup == null) || forceReload) { arrayOfTSecGroup = null; mapOfTSecGroup = schemaObj.getTSecGroupTableObj() .readTSecGroupByTenantIdx(containingTenant.getRequiredId(), swingIsInitializing); if (mapOfTSecGroup != null) { Object objArray[] = mapOfTSecGroup.values().toArray(); if (objArray != null) { int len = objArray.length; arrayOfTSecGroup = new ICFInternetTSecGroupObj[len]; for (int i = 0; i < len; i++) { arrayOfTSecGroup[i] = (ICFInternetTSecGroupObj) objArray[i]; } Arrays.sort(arrayOfTSecGroup, compareTSecGroupByQualName); } } } } 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); } }