Package com.ytec.jdap.main

Source Code of com.ytec.jdap.main.JDap

/**
*
*/
package com.ytec.jdap.main;

import com.ytec.jdap.common.FrameUtil;
import com.ytec.jdap.panel.BaseFrame;
import com.ytec.jdap.panel.JDapFrame;

/**
* <pre>
*  Title:���������
*  Description: ���������
* </pre>
*
* @author CaiJiuFa
* @version 1.00.00
*
* <pre>
*  �޸ļ�¼
*     �޸ĺ�汾:     �޸��ˣ�  �޸�����:     �޸�����:
* </pre>
*/
public class JDap {

  /**
   * ϵͳ���
   * @param args
   */
  public static void main(String[] args) {
    FrameUtil.makeSingle();//����
    JDapFrame jDapFrame = new JDapFrame();
    jDapFrame.setVisible(false);
    if (BaseFrame.authenticate(jDapFrame)) {
      jDapFrame.setVisible(true);
    }
  }

}
TOP

Related Classes of com.ytec.jdap.main.JDap

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.