📄 tabbedpane.java
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi space
// Source File Name: TabbedPane.java
package org.apache.struts2.util;
import java.util.Vector;
public class TabbedPane
{
protected String tabAlign;
protected Vector content;
protected int selectedIndex;
public TabbedPane(int defaultIndex)
{
tabAlign = null;
content = null;
selectedIndex = 0;
selectedIndex = defaultIndex;
}
public void setContent(Vector content)
{
this.content = content;
}
public Vector getContent()
{
return content;
}
public void setSelectedIndex(int selectedIndex)
{
this.selectedIndex = selectedIndex;
}
public int getSelectedIndex()
{
return selectedIndex;
}
public void setTabAlign(String tabAlign)
{
this.tabAlign = tabAlign;
}
public String getTabAlign()
{
return tabAlign;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -