📄 aqjmsmultiqueueitem.java
字号:
import java.io.*;
/** This is a sample message item class using the JMS Interface to AQ
@author Rene Steiner, Akadia AG
*/
public class AQJmsMultiQueueItem implements Serializable {
private int _no;
private String _title;
private String _text;
/** Constructor that creates a message item
*/
public AQJmsMultiQueueItem(int no, String title, String text) {
_no = no;
_title = title;
_text = text;
}
public int getNo() { return _no; }
public String getTitle() { return _title; }
public String getText() { return _text; }
} // End of class AQJmsMultiQueueItem
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -