testb.java

来自「一个“对象--XML 映射”(Object-Xml Mapping) 的类库。 」· Java 代码 · 共 46 行

JAVA
46
字号
/**
 * @author 沈东良 Edward Shen<a href="mailto:shendl_s@hotmail.com">shendl_s@hotmail.com</a>
 * 2007-8-15 下午03:40:00
 */
package net.sf.oxmled.mapping.sample;

import net.sf.oxmled.mapping.annotation.XMLAttribute;

/**
 * @author 沈东良 Edward Shen<a href="mailto:shendl_s@hotmail.com">shendl_s@hotmail.com</a>
 * 2007-8-15 下午03:40:00
 *
 */
public class TestB {
	@XMLAttribute()
	private String ssss="as";

	public String getSsss() {
		return ssss;
	}

	public void setSsss(String ssss) {
		this.ssss = ssss;
	}

	/**
	 * 
	 */
	public TestB() {
		/*
		 *
		 */
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		/*
		 *
		 */

	}

}

⌨️ 快捷键说明

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