📄 tabbedpanetest.java
字号:
/* * WebWork, Web Application Framework * * Distributable under Apache license. * See terms of license at opensource.org */package webwork.examples;import java.util.Vector;import java.util.HashMap;import java.util.Map;import java.util.Set;import webwork.action.ActionSupport;public class TabbedPaneTest extends ActionSupport{ static Set getData() { Map tmpMap = new HashMap(); tmpMap.put( "Cascade", "/tests/cascade.action" ); tmpMap.put( "Table", "/tests/table.action" ); tmpMap.put( "Hello", "/tests/hellopanel.jsp" ); return tmpMap.entrySet(); } public Vector getTabs1() { return tabs1; } // Attributes -------------------------------------------------------- private Vector tabs1 = new Vector( TabbedPaneTest.getData() );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -