Home struts generators
sometime,IDE is the memory eater.sometime,simple generator web based is a good choice!

generate Struts2 tag tabbedPanel code snippet

The tabbedpanel widget is primarily an AJAX component, where each tab can either be local content or remote content (refreshed each time the user selects that tab).

tabbedPanel
accesskey
afterNotifyTopics
ajaxAfterValidation
beforeNotifyTopics
cssClass
cssStyle
disabled
errorNotifyTopics
errorText
executeScripts
formFilter
formId
handler
highlightColor
highlightDuration
href
id
indicator
javascriptTooltip
key
label
labelSeparator
labelposition
listenTopics
loadingText
name
notifyTopics
onblur
onchange
onclick
ondblclick
onfocus
onkeydown
onkeypress
onkeyup
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup
onselect
openTemplate
parseContent
required
requiredposition
separateScripts
showErrorTransportText
showLoadingText
tabindex
targets
template
templateDir
title
tooltip
tooltipConfig
tooltipCssClass
tooltipDelay
tooltipIconPath
transport
validate
value
Examples
<p>Use notify topics to prevent a tab from being selected</p>
<pre>
<script type="text/javascript">
dojo.event.topic.subscribe("/beforeSelect", function(event, tab, tabContainer){
event.cancel = true;
});
</script>

<s:tabbedpanel id="test" beforeSelectTabNotifyTopics="/beforeSelect">
<s:div id="three" label="remote" theme="ajax" href="/AjaxTest.action" >
One Tab
</s:div>
<s:div id="three" label="remote" theme="ajax" href="/AjaxTest.action" >
Another tab
</s:div>
</s:tabbedpanel>
</pre>
references http://struts.apache.org/2.x/docs/tabbedpanel.html