bar.java
来自「在Struts2中的jar包xwork的源代码.版本为2.0.7」· Java 代码 · 共 57 行
JAVA
57 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?