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

📄 cache.java

📁 jsr-180 (SIP) 实现源码。可以在真实手机上使用
💻 JAVA
字号:
package com.micromethod.sipstack.ri;

/**
 * Cache
 */
public class Cache {

  public static final byte a = -1;

  public static final byte _fldtry = 1;

  public static final byte _fldif = 2;

  public static final byte _fldelse = 3;

  public static final byte _fldbyte = 4;

  public static final byte _fldnew = 5;

  public static final byte _flddo = 6;

  public static final byte _fldchar = 7;

  /**
   * m_ctrlState
   */
  public byte m_ctrlState = 0;

  /**
   * m_paragraph
   */
  public String m_paragraph = null;

  /**
   * m_initial
   */
  public char m_initial = 0;

  /**
   * Cache Constructor
   * 
   * @param state
   */
  public Cache(byte state) {
    m_ctrlState = 0;
    m_paragraph = null;
    m_initial = '\0';
    m_ctrlState = state;
  }
}

⌨️ 快捷键说明

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