post.java

来自「用java编写的留言版」· Java 代码 · 共 64 行

JAVA
64
字号
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 + =
减小字号Ctrl + -
显示快捷键?