Java tutorial
// Description: Java 7 Swing Finder JInternalFrame 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 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.*; /** * CFAstSwingSysClusterFinderJInternalFrame Swing Finder JInternalFrame implementation * for SysCluster. */ public class CFAstSwingSysClusterFinderJInternalFrame extends CFJInternalFrame implements ICFAstSwingSysClusterJPanelCommon { protected ICFAstSwingSchema swingSchema = null; protected JPanel swingFinderJPanel = null; protected JMenuBar finderMenuBar = null; protected JMenu menuFile = null; protected Action actionClose = null; protected JMenu menuAdd = null; protected ViewEditInternalFrameListener viewEditInternalFrameListener = null; protected Action actionAddSysCluster = null; protected ActionViewSelectedSysCluster actionViewSelected = null; protected ActionEditSelectedSysCluster actionEditSelected = null; protected ActionDeleteSelectedSysCluster actionDeleteSelected = null; protected class ViewEditInternalFrameListener implements InternalFrameListener { public ViewEditInternalFrameListener() { } public void internalFrameActivated(InternalFrameEvent e) { } public void internalFrameClosed(InternalFrameEvent e) { ((ICFJRefreshCallback) swingFinderJPanel).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) { } } protected class ActionClose extends AbstractAction { public ActionClose() { super(); putValue(Action.NAME, "Close"); setEnabled(true); } public void actionPerformed(ActionEvent e) { try { setClosed(true); } catch (Exception x) { } } } protected class ActionViewSelectedSysCluster extends AbstractAction { public ActionViewSelectedSysCluster() { super(); putValue(Action.NAME, "View Selected..."); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAstSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } ICFAstSysClusterObj selectedInstance = getSwingFocusAsSysCluster(); if (selectedInstance != null) { String classCode = selectedInstance.getClassCode(); if ("SYSC".equals(classCode)) { JInternalFrame frame = swingSchema.getSysClusterFactory() .newViewEditJInternalFrame(selectedInstance); frame.addInternalFrameListener(getViewEditInternalFrameListener()); ((ICFAstSwingSysClusterJPanelCommon) frame).setPanelMode(CFJPanel.PanelMode.View); getDesktopPane().add(frame); frame.setVisible(true); frame.show(); } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedInstance", selectedInstance, "ICFAstSysClusterObj"); } } } } protected class ActionEditSelectedSysCluster extends AbstractAction { public ActionEditSelectedSysCluster() { super(); putValue(Action.NAME, "Edit Selected..."); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAstSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } ICFAstSysClusterObj selectedInstance = getSwingFocusAsSysCluster(); if (selectedInstance != null) { String classCode = selectedInstance.getClassCode(); if ("SYSC".equals(classCode)) { JInternalFrame frame = swingSchema.getSysClusterFactory() .newViewEditJInternalFrame(selectedInstance); frame.addInternalFrameListener(getViewEditInternalFrameListener()); ((ICFAstSwingSysClusterJPanelCommon) frame).setPanelMode(CFJPanel.PanelMode.Edit); getDesktopPane().add(frame); frame.setVisible(true); frame.show(); } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedInstance", selectedInstance, "ICFAstSysClusterObj"); } } } } protected class ActionDeleteSelectedSysCluster extends AbstractAction { public ActionDeleteSelectedSysCluster() { super(); putValue(Action.NAME, "Delete Selected..."); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAstSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } ICFAstSysClusterObj selectedInstance = getSwingFocusAsSysCluster(); if (selectedInstance != null) { String classCode = selectedInstance.getClassCode(); if ("SYSC".equals(classCode)) { JInternalFrame frame = swingSchema.getSysClusterFactory() .newAskDeleteJInternalFrame(selectedInstance); ((ICFAstSwingSysClusterJPanelCommon) frame).setPanelMode(CFJPanel.PanelMode.View); frame.addInternalFrameListener(getViewEditInternalFrameListener()); getDesktopPane().add(frame); frame.setVisible(true); frame.show(); } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedInstance", selectedInstance, "ICFAstSysClusterObj"); } } } } protected class ActionAddSysCluster extends AbstractAction { public ActionAddSysCluster() { super(); putValue(Action.NAME, "Add Cluster..."); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAstSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } ICFAstSysClusterObj obj = schemaObj.getSysClusterTableObj().newInstance(); ICFAstSysClusterEditObj edit = (ICFAstSysClusterEditObj) (obj.beginEdit()); if (edit == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "edit"); } ICFAstClusterObj secCluster = schemaObj.getSecCluster(); edit.setRequiredContainerCluster(secCluster); JInternalFrame frame = swingSchema.getSysClusterFactory().newViewEditJInternalFrame(obj); frame.addInternalFrameListener(getViewEditInternalFrameListener()); ICFAstSwingSysClusterJPanelCommon jpanelCommon = (ICFAstSwingSysClusterJPanelCommon) frame; jpanelCommon.setPanelMode(CFJPanel.PanelMode.Add); getDesktopPane().add(frame); frame.setVisible(true); frame.show(); } } public CFAstSwingSysClusterFinderJInternalFrame(ICFAstSwingSchema argSchema) { super(); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); } setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); swingSchema = argSchema; swingFinderJPanel = argSchema.getSysClusterFactory().newFinderJPanel(); setContentPane(swingFinderJPanel); Dimension dim = new Dimension(1024, 480); setSize(dim); dim = new Dimension(320, 240); setMinimumSize(dim); setTitle("Find Cluster"); setJMenuBar(getFinderMenuBar()); setIconifiable(true); setMaximizable(true); setResizable(true); setClosable(false); adjustFinderMenuBar(); } public ICFAstSwingSchema getSwingSchema() { return (swingSchema); } public JMenuBar getFinderMenuBar() { if (finderMenuBar == null) { JMenuItem menuItem; finderMenuBar = new JMenuBar(); menuFile = new JMenu("File"); actionAddSysCluster = new ActionAddSysCluster(); menuItem = new JMenuItem(actionAddSysCluster); menuFile.add(menuItem); actionViewSelected = new ActionViewSelectedSysCluster(); menuItem = new JMenuItem(actionViewSelected); menuFile.add(menuItem); actionEditSelected = new ActionEditSelectedSysCluster(); menuItem = new JMenuItem(actionEditSelected); menuFile.add(menuItem); actionDeleteSelected = new ActionDeleteSelectedSysCluster(); menuItem = new JMenuItem(actionDeleteSelected); menuFile.add(menuItem); actionClose = new ActionClose(); menuItem = new JMenuItem(actionClose); menuFile.add(menuItem); finderMenuBar.add(menuFile); } return (finderMenuBar); } public void setSwingFocus(ICFLibAnyObj value) { final String S_ProcName = "setSwingFocus"; if ((value == null) || (value instanceof ICFAstSysClusterObj)) { super.setSwingFocus(value); } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "value", value, "ICFAstSysClusterObj"); } adjustFinderMenuBar(); } public ICFAstSysClusterObj getSwingFocusAsSysCluster() { return ((ICFAstSysClusterObj) getSwingFocus()); } public void setSwingFocusAsSysCluster(ICFAstSysClusterObj value) { setSwingFocus(value); } public void adjustFinderMenuBar() { JMenuItem menuItem; Action act; String itemLabel; ICFAstSysClusterObj selectedObj = getSwingFocusAsSysCluster(); boolean enableState; if (selectedObj == null) { enableState = false; } else { enableState = true; } if (actionViewSelected != null) { actionViewSelected.setEnabled(enableState); } if (actionEditSelected != null) { actionEditSelected.setEnabled(enableState); } if (actionDeleteSelected != null) { actionDeleteSelected.setEnabled(enableState); } if (actionAddSysCluster != null) { actionAddSysCluster.setEnabled(true); } if (menuFile != null) { int itemCount = menuFile.getItemCount(); for (int itemIdx = 0; itemIdx < itemCount; itemIdx++) { menuItem = menuFile.getItem(itemIdx); act = menuItem.getAction(); if (act != null) { if (act == actionViewSelected) { menuItem.setEnabled(enableState); } else if (act == actionEditSelected) { menuItem.setEnabled(enableState); } else if (act == actionDeleteSelected) { menuItem.setEnabled(enableState); } else if (act == actionAddSysCluster) { menuItem.setEnabled(true); } } } } } protected ViewEditInternalFrameListener getViewEditInternalFrameListener() { if (viewEditInternalFrameListener == null) { viewEditInternalFrameListener = new ViewEditInternalFrameListener(); } return (viewEditInternalFrameListener); } }