📄 guestbooklocal.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : GuestbookLocal.java
* Creation/Modification History :
*
* Neelesh 11-Jan-2003 Created
*
*/
package oracle.otnsamples.vsm.entities;
import java.util.Date;
import javax.ejb.EJBLocalObject;
/**
* Local interface for Guestbook entity. The interface has getters/setters for
* the persistent fields of the entity. Generated by Oracle9i JDeveloper
* Tool.
*/
public interface GuestbookLocal extends EJBLocalObject {
String getId( );
void setId( String newId );
String getUserName( );
void setUserName( String newUserName );
String getEmail( );
void setEmail( String newEmail );
Date getEntryDate( );
void setEntryDate( Date newEntryDate );
String getRating( );
void setRating( String newRating );
String getComment( );
void setComment( String newComment );
String getLanguageID( );
void setLanguageID( String newLanguageID );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -