⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bar.java

📁 在Struts2中的jar包xwork的源代码.版本为2.0.7
💻 JAVA
字号:
/* * Created on Nov 12, 2003 */package com.opensymphony.xwork2.spring;/** * @author Mike */public class Bar {		private Foo foo;	private String thing;	private int value;		/**	 * @return Returns the foo.	 */	public Foo getFoo() {		return foo;	}	/**	 * @param foo The foo to set.	 */	public void setFoo(Foo foo) {		this.foo = foo;	}	/**	 * @return Returns the thing.	 */	public String getThing() {		return thing;	}	/**	 * @param thing The thing to set.	 */	public void setThing(String thing) {		this.thing = thing;	}	/**	 * @return Returns the value.	 */	public int getValue() {		return value;	}	/**	 * @param value The value to set.	 */	public void setValue(int value) {		this.value = value;	}}

⌨️ 快捷键说明

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