📄 helloif.java
字号:
/* * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */package samples.webservices.jaxrpc.simplebean;import java.rmi.Remote;import java.rmi.RemoteException;import java.math.BigDecimal;public interface HelloIF extends Remote { public String sayHello(String s) throws RemoteException; public String[] reverse(String[] words) throws RemoteException; public BigDecimal calculateInterest(SimpleAccountBean accountBean) throws RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -