count.java
来自「EJB3.0请一定要上载质量高而且本站没有的源码」· Java 代码 · 共 25 行
JAVA
25 行
package examples.session.stateful_dd;
/**
* The business interface - a plain Java interface with only business methods.
*/
public interface Count {
/**
* Increments the counter by 1
*/
public int count();
/**
* Sets the counter to val
*
* @param val
*/
public void set(int val);
/**
* removes the counter
*/
public void remove();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?