📄 greeterdb.java
字号:
/* * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */package samples.jdbc.simple.ejb; /** * Remote interface for the GreeterDBEJB. The remote interface defines all possible * business methods for the bean. These are the methods going to be invoked remotely * by the servlets, once they have a reference to the remote interface. * * Servlets generally take the help of JNDI to lookup the bean's home interface and * then use the home interface to obtain references to the bean's remote interface. */public interface GreeterDB extends javax.ejb.EJBObject { /** * Returns the greeting String such as "Good morning, John" * @return the greeting String */ public String getGreeting() throws java.rmi.RemoteException; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -