changedparent.java
来自「JDiff is a Javadoc doclet which generate」· Java 代码 · 共 28 行
JAVA
28 行
package ChangedPackage;/** * OLD: The changes in this class are to do with changes in inherited * methods and fields. */public class ChangedParent { /** This constructor should remain unchanged. */ public ChangedParent() { } /** OLD This method moves to its child. */ public void MovingMethod2() { } /** OLD This method is removed from the parent. */ public int OldParentMethod(int a) { return 1; } /** OLD This field moves to its child. */ public int MovingField2; /** OLD This field is removed from the parent. */ public String OldParentField;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?