Application.java
上传用户:w19756388
上传日期:2022-03-11
资源大小:124k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Java

  1. package com.coded.jchat;
  2. import javax.swing.*;
  3. /*
  4.  * Copyright (C) 2006 Hassen Ben Tanfous
  5.  * All right reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  *  1. Redistributions of source code must retain the above copyright
  12.  * notice, this list of conditions and the following disclaimer.
  13.  *
  14.  *  2. Redistributions in binary form must reproduce the above copyright
  15.  * notice, this list of conditions and the following disclaimer in the
  16.  * documentation and/or other materials provided with the distribution.
  17.  *
  18.  *  3. Neither the name of the Hassen Ben Tanfous nor the names of its contributors
  19.  * may be used to endorse or promote products derived from this software
  20.  * without specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  25.  * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR
  26.  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  27.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  28.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  29.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  30.  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  31.  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32.  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33.  *
  34.  * Application.java
  35.  * Date: 15/01/2006
  36.  * @author Hassen Ben Tanfous
  37.  */
  38. public class Application {
  39.     public static void main(String[] args) {
  40. //      try {
  41. //          UIManager.setLookAndFeel(
  42. //                  "com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
  43. //      } catch (ClassNotFoundException e) {
  44. //          try {
  45. //              UIManager.setLookAndFeel(
  46. //                      "javax.swing.plaf.metal.MetalLookAndFeel");
  47. //          } catch (ClassNotFoundException e1) {
  48. //          } catch (InstantiationException e1) {
  49. //          } catch (IllegalAccessException e1) {
  50. //          } catch (UnsupportedLookAndFeelException e1) {
  51. //          }
  52. //      } catch (InstantiationException e) {
  53. //      } catch (IllegalAccessException e) {
  54. //      } catch (UnsupportedLookAndFeelException e) {
  55. //      }
  56.       JChat jchat = new JChat();
  57.   }
  58. }