pulsecallobject.java.svn-base

来自「通讯采集软件」· SVN-BASE 代码 · 共 38 行

SVN-BASE
38
字号
/*
 * PulseCallObject.java
 *
 * Created on 2003年12月15日, 上午10:52
 */

package collector.gui.guiVo;

import pbs.service.vo.*;

/**
 *
 * @author  Administrator
 */
public class PulseCallObject {

  /** Creates a new instance of PulseCallObject */
  private pulse m_pulse = null;
  public PulseCallObject(pulse m_pulse) {
    this.m_pulse = m_pulse;
  }

  public pulse getPulse() {
    return this.m_pulse;
  }

  public int getPulseNo() {
    return this.m_pulse.getPulseNo();
  }

  public String toString() {
    String m_pulseName = this.m_pulse.getPulseName();
    String m_pulseNo = String.valueOf(this.m_pulse.getPulseNo());
    return m_pulseName + " <" + m_pulseNo + ">";
  }

}

⌨️ 快捷键说明

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