📄 viewresponse.java
字号:
package com.croftsoft.apps.chat.response; import com.croftsoft.core.lang.NullArgumentException; import com.croftsoft.apps.chat.model.seri.SeriChatWorld; /********************************************************************* * Response to a ViewRequest. * * @version * 2003-06-18 * @since * 2003-06-11 * @author * <a href="http://www.croftsoft.com/">David Wallace Croft</a> *********************************************************************/ public final class ViewResponse extends AbstractResponse ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// { private static final long serialVersionUID = 0L; // private final SeriChatWorld seriChatWorld; private final long eventIndex; ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// public ViewResponse ( SeriChatWorld seriChatWorld, long eventIndex ) ////////////////////////////////////////////////////////////////////// { super ( false ); NullArgumentException.check ( this.seriChatWorld = seriChatWorld ); this.eventIndex = eventIndex; } ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// public SeriChatWorld getSeriChatWorld ( ) { return seriChatWorld; } public long getEventIndex ( ) { return eventIndex; } ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -