📄 bar.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 + -