📄 fooimpl.java
字号:
import org.ozoneDB.OzoneObject;/** * @see {Client} * $Id: FooImpl.java,v 1.1 2003/04/17 09:36:08 per_nyfelt Exp $ */public class FooImpl extends OzoneObject implements Foo { private String aVal; private String bVal; public void setA(String aVal) throws Exception { this.aVal = aVal; } public String getA() { return aVal; } /** * * @param bVal * @throws Exception when the value bad is supplied */ public void setB(String bVal) throws Exception { if (bVal.equals("bad")) { throw new Exception("illegal value"); } this.bVal = bVal; } public String getB() { return bVal; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -