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

📄 bar.java

📁 在Struts2中的jar包xwork的源代码.版本为2.0.7
💻 JAVA
字号:
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.xwork2.util;import com.opensymphony.xwork2.ActionSupport;/** * @author <a href="mailto:plightbo@cisco.com">Pat Lightbody</a> * @author $Author: mrdon $ * @version $Revision: 1063 $ */public class Bar extends ActionSupport {    Long id;    String title;    int somethingElse;    public void setId(Long id) {        this.id = id;    }    public Long getId() {        return this.id;    }    public void setSomethingElse(int somethingElse) {        this.somethingElse = somethingElse;    }    public int getSomethingElse() {        return somethingElse;    }    public void setTitle(String title) {        this.title = title;    }    public String getTitle() {        return title;    }    public String toString() {        return getTitle() + ":" + getSomethingElse();    }}

⌨️ 快捷键说明

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