⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 default.java

📁 一个类似QQ的在线通讯聊天软件原码,适合初学者参考学习。
💻 JAVA
字号:
package openicq.data;

/**
 * The <code>Default</code> class contains the program parameters.
 * @author Hansgeorg Schwibbe
 * @copyright 2004
 */
public class Default
{
  /**
   * The author of this application.
   */
  public static final String AUTHOR = "Hansgeorg Schwibbe";

  /**
   * The copyright of this application.
   */
  public static final int COPYRIGHT = 2004;

  /**
   * The file name of the file with the frame informations.
   */
  public static final String FILE_NAME_FRAME_DATA = "frame.ocq";

  /**
   * The file name of the file with the general settings.
   */
  public static final String FILE_NAME_GENERAL_DATA = "general.ocq";

  /**
   * The file name of the file with the known contact list.
   */
  public static final String FILE_NAME_KNOWN_LIST = "known.ocq";

  /**
   * The file name of the file with the used language.
   */
  public static final String FILE_NAME_LANGUAGE = "language.ocq";

  /**
   * The file name of the file with the last login.
   */
  public static final String FILE_NAME_LAST_LOGIN = "last.ocq";

  /**
   * The file name of the file with the login data.
   */
  public static final String FILE_NAME_LOGIN_DATA = "login.ocq";

  /**
   * The file name of the file with the login status.
   */
  public static final String FILE_NAME_LOGIN_STATUS = "status.ocq";

  /**
   * The file name of the file with the sound settings.
   */
  public static final String FILE_NAME_SOUND_DATA = "sound.ocq";

  /**
   * The file name of the file with the unknown contact list.
   */
  public static final String FILE_NAME_UNKNOWN_LIST = "unknown.ocq";

  /**
   * The folder name of the folder where the user data will be stored.
   */
  public static final String FOLDER_NAME_HOME = System.getProperty("user.home")
                                                + "/.OpenICQ";

  /**
   * The host name of the ICQ server.
   */
  public static String ICQ_HOST = new String();

  /**
   * The source port of the client.
   */
  public static int ICQ_PORT = 0;

  /**
   * The name of the standard language.
   */
  public static final String LANGUAGE = "English";

  /**
   * The license of this application.
   */
  public static final String LICENSE = "GNU General Public License";

  /**
   * The minimum password length.
   */
  public static final int MIN_PASSWORD_LEN = 4;

  /**
   * The special thanks to helpful persons.
   */
  public static final String[] THANKS_PERSONS = new String[] {};

  /**
   * The special thanks to helpful projects.
   */
  public static final String[] THANKS_PROJECTS = new String[]
  {
   "JOscarLib",
   "systray4j"
  };

  /**
   * The version number of this application.
   */
  public static final String VERSION = "0.9";

  /**
   * The link to the website for lost passwords.
   */
  public static String WEBLINK_PASSWORD = "";

  /**
   * The link to the registration site.
   */
  public static String WEBLINK_REGISTER = "";

  /**
   * The link to the white pages.
   */
  public static String WEBLINK_WHITEPAGES = "";
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -