📄 calculator.java
字号:
/* * Generated by XDoclet - Do not edit! */package com.liuyang.jboss.sessionbean.calculator.ejb;/** * Remote interface for Calculator. * @author liuyang */public interface Calculator extends javax.ejb.EJBObject{ public void reset( ) throws java.rmi.RemoteException; public int getValue( ) throws java.rmi.RemoteException; public void setValue( int v ) throws java.rmi.RemoteException; public void add( int value ) throws java.rmi.RemoteException; public void subtract( int v ) throws java.rmi.RemoteException; public void multiplyBy( int v ) throws java.rmi.RemoteException; public void divideBy( int v ) throws java.rmi.RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -