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

📄 post.java

📁 用java编写的留言版
💻 JAVA
字号:
package com.bitterjava.bbs.ejb;

/**
 * This is an Enterprise Java Bean Remote Interface
 */
public interface Post extends javax.ejb.EJBObject {

/**
 * Getter method for author
 * @return java.lang.String
 * @exception java.rmi.RemoteException The exception description.
 */
java.lang.String getAuthor() throws java.rmi.RemoteException;
/**
 * 
 * @return java.sql.Date
 * @exception String The exception description.
 */
java.sql.Date getDate() throws java.rmi.RemoteException;
/**
 * 
 * @return int
 * @exception String The exception description.
 */
int getPostID() throws java.rmi.RemoteException;
/**
 * Getter method for subject
 * @return java.lang.String
 * @exception java.rmi.RemoteException The exception description.
 */
java.lang.String getSubject() throws java.rmi.RemoteException;
/**
 * Getter method for text
 * @return java.lang.String
 * @exception java.rmi.RemoteException The exception description.
 */
java.lang.String getText() throws java.rmi.RemoteException;
/**
 * Setter method for author
 * @param newValue java.lang.String
 * @exception java.rmi.RemoteException The exception description.
 */
void setAuthor(java.lang.String newValue) throws java.rmi.RemoteException;
/**
 * 
 * @return void
 * @param newValue java.sql.Date
 * @exception String The exception description.
 */
void setDate(java.sql.Date newValue) throws java.rmi.RemoteException;
/**
 * Setter method for subject
 * @param newValue java.lang.String
 * @exception java.rmi.RemoteException The exception description.
 */
void setSubject(java.lang.String newValue) throws java.rmi.RemoteException;
/**
 * Setter method for text
 * @param newValue java.lang.String
 * @exception java.rmi.RemoteException The exception description.
 */
void setText(java.lang.String newValue) throws java.rmi.RemoteException;
}

⌨️ 快捷键说明

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