exotictype.java

来自「是关于struts+hibernate+spring开发宝典的源代码,希望对大家」· Java 代码 · 共 15 行

JAVA
15
字号
package cn.hxex.springcore.propertyeditor;

public class ExoticType {

	private String name;
	
	public ExoticType( String name ) {
		this.name = name;
	}
	
	public String toString() {
		return this.name;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?