bar.java
来自「webwork source」· Java 代码 · 共 42 行
JAVA
42 行
/* * WebWork, Web Application Framework * * Distributable under Apache license. * See terms of license at opensource.org */package webwork.examples;import webwork.action.ActionSupport;/** * <code>Bar</code> * * @author Matt Baldree * date $Date: 2003/11/01 18:15:24 $ * @version $Revision: 1.3 $ */public class Bar extends ActionSupport{ private String title; private String barMessage; public void setTitle(String title) { this.title = title; } public String getTitle() { return this.title; } public String getBarMessage() { return this.barMessage; } public String doExecute() { barMessage = "Bar executed"; return SUCCESS; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?