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

📄 bsregstate.java

📁 一款即时通讯软件
💻 JAVA
字号:
package edu.ou.kmi.buddyspace.core;

/*
 * BSRegState.java
 *
 * Project: BuddySpace
 * (C) Copyright Knowledge Media Institute 2002
 *
 *
 * Created on 5 August 2002, 18:14
 */

import org.jabber.jabberbeans.util.*;

/**
 * <code>BSRegState</code> contains information about current phase
 * of registration process.
 *
 * @author  Jiri Komzak, Knowledge Media Institute, Open University, United Kingdom
 */
public class BSRegState {
    /** BSRegState enumeration values */
    public final static int NOT_SET          =-1;
    public final static int NOT_REGISTERED   = 0;
    public final static int REGISTERING1     = 1;
    public final static int REG_INFOS_NEEDED = 3;
    public final static int REGISTERING2     = 4;
    public final static int REGISTERED       = 5;
    /** stores the value of the enumeration - initially 'not set' */
    public int value = NOT_SET;
    
    public String servedID = null;
    
    public JID jid = null;
}

⌨️ 快捷键说明

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