Source Code Cross Referenced for DataEntryApplication.java in  » J2EE » Sofia » com » salmonllc » examples » example15 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » Sofia » com.salmonllc.examples.example15 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.salmonllc.examples.example15;
002:
003:        //The Salmon Open Framework for Internet Applications (SOFIA)
004:        //Copyright (C) 1999 - 2002, Salmon LLC
005:        //
006:        //This program is free software; you can redistribute it and/or
007:        //modify it under the terms of the GNU General Public License version 2
008:        //as published by the Free Software Foundation; 
009:        //
010:        //This program is distributed in the hope that it will be useful,
011:        //but WITHOUT ANY WARRANTY; without even the implied warranty of
012:        //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
013:        //GNU General Public License for more details.
014:        //
015:        //You should have received a copy of the GNU General Public License
016:        //along with this program; if not, write to the Free Software
017:        //Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
018:        //
019:        //For more information please visit http://www.salmonllc.com
020:
021:        import javax.swing.*;
022:        import java.awt.event.WindowAdapter;
023:        import java.awt.event.WindowEvent;
024:        import java.awt.*;
025:
026:        /*
027:         * The data entry screen hosted in a Java Application
028:         */
029:
030:        public class DataEntryApplication {
031:
032:            /**
033:             * Checks if there are unsaved changes before allowing the user to close the window.
034:             */
035:            public static class CloseManager extends WindowAdapter {
036:                MainPanel _pan;
037:
038:                public CloseManager(MainPanel pan) {
039:                    _pan = pan;
040:                }
041:
042:                public void windowClosing(WindowEvent e) {
043:                    if (_pan.checkDataModified()) {
044:                        e.getWindow().hide();
045:                        e.getWindow().dispose();
046:                        _pan.stopPinging();
047:                        System.exit(0);
048:                    }
049:                }
050:            }
051:
052:            public static void main(String args[]) {
053:                //Get parms from the argument line. At a minimum we need a server URL parm
054:                //Optionally we can get a session id. This is if we are running from Java Web Start. The client application can use the same server session as the web applet.
055:                //Also we can optionally get width and height
056:                String serverID = null;
057:                String sessionID = null;
058:                int width = 700;
059:                int height = 420;
060:                if (args.length > 0) {
061:                    serverID = args[0];
062:                    if (serverID != null) {
063:                        int pos = serverID.indexOf("/Jsp/");
064:                        if (pos != -1)
065:                            serverID = serverID.substring(0, pos);
066:                    }
067:                }
068:                if (args.length > 1) {
069:                    try {
070:                        width = Integer.parseInt(args[1]);
071:                    } catch (Exception e) {
072:                    }
073:                }
074:                if (args.length > 2) {
075:                    try {
076:                        height = Integer.parseInt(args[2]);
077:                    } catch (Exception e) {
078:                    }
079:                }
080:                if (args.length > 3)
081:                    sessionID = args[3];
082:
083:                //Create the GUI
084:                JFrame f = new JFrame("Data Entry Sample");
085:                f.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
086:                Dimension r = Toolkit.getDefaultToolkit().getScreenSize();
087:
088:                f.setBounds((r.width - width) / 2, (r.height - height) / 2,
089:                        width, height);
090:                MainPanel panel = new MainPanel(serverID, sessionID, width);
091:                f.getContentPane().add(panel);
092:
093:                //Check to see if we are connected to the server before continuing.
094:                if (panel.checkServerConnection()) {
095:                    f.addWindowListener(new CloseManager(panel));
096:                    f.show();
097:                } else {
098:                    f.dispose();
099:                    System.exit(0);
100:                }
101:            }
102:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.