📄 custom.java
字号:
//$Id: Custom.java 7275 2005-06-22 18:58:16Z oneovthafew $package org.hibernate.test.legacy;public class Custom implements Cloneable { String id; private String name; public Object clone() { try { return super.clone(); } catch (CloneNotSupportedException cnse) { throw new RuntimeException(); } } void setName(String name) { this.name = name; } String getName() { return name; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -