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

📄 bsconsumationresult.java

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

/*
 * BSConsumationResult.java
 *
 * Project: BuddySpace
 * (C) Copyright Knowledge Media Institute 2003
 *
 *
 * Created on 13 May 2003, 14:00
 */

/**
 * <code>BSConsumationResult</code> defines possible results of action called
 * for a consumer.
 *
 * @author  Jiri Komzak, Knowledge Media Institute, Open University, United Kingdom
 */
public class BSConsumationResult {
    
    static public int DONE = 1;
    static public int PASS = 2;
    //static public int NOT_LOWER = 3;
    
    public int value = PASS;
    
    public BSConsumationResult(int value) {
        this.value = value;
    }
}

⌨️ 快捷键说明

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