001: package org.apache.ojb.tools.mapping.reversedb;
002:
003: /* Copyright 2002-2005 The Apache Software Foundation
004: *
005: * Licensed under the Apache License, Version 2.0 (the "License");
006: * you may not use this file except in compliance with the License.
007: * You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */
017:
018: /**
019: *
020: * @author <a href="mailto:bfl@florianbruckner.com">Florian Bruckner</a>
021: * @version $Id: Main.java,v 1.1.2.1 2005/12/21 22:32:04 tomdz Exp $
022: */
023: public class Main {
024:
025: private java.util.Properties theProperties;
026:
027: /** Creates a new instance of Main */
028: public Main() {
029: try {
030: theProperties = new java.util.Properties();
031: theProperties.load(new java.io.FileInputStream(System
032: .getProperty("user.home")
033: + System.getProperty("file.separator")
034: + "SchemeGenerator.properties"));
035: } catch (java.io.IOException ioex) {
036: // report nothing, because the worst thing that can happen is
037: // that the properties arent there.
038: }
039: new org.apache.ojb.tools.mapping.reversedb.gui.JFrmMainFrame(
040: theProperties).show();
041: }
042:
043: /**
044: * @param args the command line arguments
045: * @param args ghjghjghj
046: */
047: public static void main(String[] args) {
048: new Main();
049: }
050: }
051: /***************************** Changelog *****************************
052: // $Log: Main.java,v $
053: // Revision 1.1.2.1 2005/12/21 22:32:04 tomdz
054: // Updated license
055: //
056: // Revision 1.1 2004/05/05 16:39:05 arminw
057: // fix fault
058: // wrong package structure used:
059: // org.apache.ojb.tools.reversdb
060: // org.apache.ojb.tools.reversdb2
061: //
062: // instead of
063: // org.apache.ojb.tools.mapping.reversdb
064: // org.apache.ojb.tools.mapping.reversdb2
065: //
066: // Revision 1.1 2004/05/04 13:45:01 arminw
067: // move reverseDB stuff
068: //
069: // Revision 1.5 2004/04/04 23:53:42 brianm
070: // Fixed initial copyright dates to match cvs repository
071: //
072: // Revision 1.4 2004/03/11 18:16:22 brianm
073: // ASL 2.0
074: //
075: // Revision 1.3 2003/09/10 06:45:00 mpoeschl
076: // remove duplicated license
077: //
078: // Revision 1.2 2002/06/17 19:34:33 jvanzyl
079: // Correcting all the package references.
080: // PR:
081: // Obtained from:
082: // Submitted by:
083: // Reviewed by:
084: //
085: // Revision 1.1.1.1 2002/06/17 18:16:52 jvanzyl
086: // Initial OJB import
087: //
088: // Revision 1.2 2002/05/16 11:47:09 florianbruckner
089: // fix CR/LF issue, change license to ASL
090: //
091: // Revision 1.1 2002/04/18 11:44:16 mpoeschl
092: //
093: // move files to new location
094: //
095: // Revision 1.3 2002/04/07 09:05:16 thma
096: // *** empty log message ***
097: //
098: // Revision 1.2 2002/03/11 17:36:05 florianbruckner
099: // fix line break issue for these files that were previously checked in with -kb
100: //
101: // Revision 1.1 2002/03/04 17:19:32 thma
102: // initial checking for Florians Reverse engineering tool
103: //
104: // Revision 1.1.1.1 2002/02/20 13:35:25 Administrator
105: // initial import
106: //
107: /***************************** Changelog *****************************/
|