monthselector.java

来自「webwork source」· Java 代码 · 共 35 行

JAVA
35
字号
/* * WebWork, Web Application Framework * * Distributable under Apache license. * See terms of license at opensource.org */package webwork.examples;import webwork.action.ActionSupport;/** *	Month selector *       *	@see <related> *	@author Rickard 謆erg (<email>) *	@version $Revision: 1.4 $ */public class MonthSelector   extends ActionSupport{   // Attributes ----------------------------------------------------   int month = -1;      // Public --------------------------------------------------------   public void setMonth(int aMonth)   {      this.month = aMonth;   }      public int getMonth()   {      return month;   }}

⌨️ 快捷键说明

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