📄 pulsecallobject.java.svn-base
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -