📄 abstractdata.java
字号:
/** JBoss, the OpenSource J2EE webOS** Distributable under LGPL license.* See terms of license at gnu.org.*/package test.interfaces;import java.io.Serializable;/** * Base Data Container for all other Value Objects * * @author Andreas Schaefer * @version $Revision: 1.1 $ **/public abstract class AbstractData implements Cloneable, Serializable{ /** * Returns a copy of itself. Is necessary because this * method is protected within java.lang.Object. * * @return Copy of this instance **/ public Object clone() { try { return super.clone(); } catch( CloneNotSupportedException cnse ) { // This never happens return null; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -