[jboss-cvs] JBoss Profiler SVN: r512 - branches/JBossProfiler2/src/main/www.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Nov 30 10:53:16 EST 2008


Author: jesper.pedersen
Date: 2008-11-30 10:53:15 -0500 (Sun, 30 Nov 2008)
New Revision: 512

Modified:
   branches/JBossProfiler2/src/main/www/loadthreadtree.xhtml
Log:
[JBPROFILER-61] Reformat source to match standards

Modified: branches/JBossProfiler2/src/main/www/loadthreadtree.xhtml
===================================================================
--- branches/JBossProfiler2/src/main/www/loadthreadtree.xhtml	2008-11-30 15:14:34 UTC (rev 511)
+++ branches/JBossProfiler2/src/main/www/loadthreadtree.xhtml	2008-11-30 15:53:15 UTC (rev 512)
@@ -5,83 +5,93 @@
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:a4j="http://richfaces.org/a4j"
 	xmlns:rich="http://richfaces.org/rich">
-
-	<ui:composition template="/template/loadtemplate.xhtml">
-		<ui:define name="loadContent">
-			<f:facet name="header">
-				<h:outputText value="Threads tree"/>		
-			</f:facet>
 
-			<rich:panel id="threadPanel">
-			<h:form>
-			<rich:datascroller align="left" for="threads" maxPages="20"/>
-			<rich:spacer height="30"/>
-			<rich:dataTable width="483" id="threads" rows="20" columnClasses="wholecol" value="#{treeThreadBean.allThreads}" var="threadInfoB" onRowMouseOver="this.style.backgroundColor='#F1F1F1'" onRowMouseOut="this.style.backgroundColor='#FFFFFF'" rowKeyVar="rowClassVar">
-				<f:facet name="header">
-					<rich:columnGroup>
-						<h:column>
-						<h:outputText styleClass="headerText" value="Thread No"/>
-						</h:column>
-						<h:column>
-						<h:outputText styleClass="headerText" value="Thread Name"/>
-						</h:column>
-						<h:column>
-						<h:outputText styleClass="headerText" value="Priority"/>
-						</h:column>
-						<h:column>
-						<h:outputText styleClass="headerText" value="Daemon"/>
-						</h:column>
-						<h:column>
-						<h:outputText styleClass="headerText" value="Groups"/>
-						</h:column>
-					</rich:columnGroup>
-				</f:facet>
-				
-			<h:column>
-                <h:outputText value="#{threadInfoB.id}"/>
+  <ui:composition template="/template/loadtemplate.xhtml">
+    <ui:define name="loadContent">
+      <f:facet name="header">
+	<h:outputText value="Threads tree"/>		
+      </f:facet>
+      
+      <rich:panel id="threadPanel">
+	<h:form>
+	  <rich:datascroller align="left" for="threads" maxPages="20"/>
+	  <rich:spacer height="30"/>
+	  <rich:dataTable width="483"
+                          id="threads"
+                          rows="20"
+                          columnClasses="wholecol"
+                          value="#{treeThreadBean.allThreads}"
+                          var="threadInfoB" 
+                          onRowMouseOver="this.style.backgroundColor='#F1F1F1'" 
+                          onRowMouseOut="this.style.backgroundColor='#FFFFFF'" 
+                          rowKeyVar="rowClassVar">
+	    <f:facet name="header">
+	      <rich:columnGroup>
+		<h:column>
+		  <h:outputText styleClass="headerText" value="Thread No"/>
+		</h:column>
+		<h:column>
+		  <h:outputText styleClass="headerText" value="Thread Name"/>
+		</h:column>
+		<h:column>
+		  <h:outputText styleClass="headerText" value="Priority"/>
+		</h:column>
+		<h:column>
+		  <h:outputText styleClass="headerText" value="Daemon"/>
+		</h:column>
+		<h:column>
+		  <h:outputText styleClass="headerText" value="Groups"/>
+		</h:column>
+	      </rich:columnGroup>
+	    </f:facet>
+	    
+	    <h:column>
+              <h:outputText value="#{threadInfoB.id}"/>
             </h:column>
             <h:column>
-                <h:outputText value="#{threadInfoB.name}"/>
+              <h:outputText value="#{threadInfoB.name}"/>
             </h:column>
             <h:column>
-                <h:outputText value="#{threadInfoB.priority}"/>
+              <h:outputText value="#{threadInfoB.priority}"/>
             </h:column>
             <h:column>
-                <h:outputText value="#{threadInfoB.daemon}"/>
+              <h:outputText value="#{threadInfoB.daemon}"/>
             </h:column>
             <h:column>
-                <h:outputText value="#{threadInfoB.groups}"/>
+              <h:outputText value="#{threadInfoB.groups}"/>
             </h:column>
             
-            <a4j:support event="onRowClick" action="#{treeThreadBean.fireSelectedThread}" reRender="threadOutputText,threadTree">
-            	<a4j:actionparam name="selected" value="#{threadInfoB.id}" assignTo="#{treeThreadBean.selectedThread}">
-            	</a4j:actionparam>
-            	<rich:toolTip direction="top-right" showDelay="500">
-            		<span style="white-space:nowrap"> Click one row to show the threads tree below!<br/></span>
-            	</rich:toolTip>
-			</a4j:support>
-			</rich:dataTable>
-			
-			</h:form>
-			</rich:panel>	
-			
-			<br/>	
-			<h:outputText id="threadOutputText" value="Thread #{treeThreadBean.selectedThread} is chosen,please see the
-			threads info below!"/>	
-			
-		<rich:panel>		
-	 	 <h:form>    
-	 	 <h:form>    
-       	 <rich:tree id="threadTree" style="width:300px" switchType="ajax" stateAdvisor="#{treeDemoStateAdvisor}">
-            <rich:recursiveTreeNodesAdaptor roots="#{treeFrameBean.srcRoots}" var="item" nodes="#{item.children}">
-            </rich:recursiveTreeNodesAdaptor>
-		</rich:tree>
+            <a4j:support event="onRowClick" 
+                         action="#{treeThreadBean.fireSelectedThread}" 
+                         reRender="threadOutputText,threadTree">
+              <a4j:actionparam name="selected" value="#{threadInfoB.id}" assignTo="#{treeThreadBean.selectedThread}">
+              </a4j:actionparam>
+              <rich:toolTip direction="top-right" showDelay="500">
+            	<span style="white-space:nowrap"> Click one row to show the threads tree below!<br/></span>
+              </rich:toolTip>
+	    </a4j:support>
+	  </rich:dataTable>
+	  
+	</h:form>
+      </rich:panel>	
+      
+      <br/>	
+      <h:outputText id="threadOutputText" value="Thread #{treeThreadBean.selectedThread} is chosen,please see the
+			                         threads info below!"/>	
+      
+      <rich:panel>		
+	<h:form>    
+	  <h:form>    
+       	    <rich:tree id="threadTree" style="width:300px" switchType="ajax" stateAdvisor="#{treeDemoStateAdvisor}">
+              <rich:recursiveTreeNodesAdaptor roots="#{treeFrameBean.srcRoots}" var="item" nodes="#{item.children}">
+              </rich:recursiveTreeNodesAdaptor>
+	    </rich:tree>
+    	  </h:form>
+          
     	</h:form>
-
-    	</h:form>
-		</rich:panel>	
-		
-		</ui:define>
-	</ui:composition>
-
-</html>
\ No newline at end of file
+      </rich:panel>	
+      
+    </ui:define>
+  </ui:composition>
+  
+</html>




More information about the jboss-cvs-commits mailing list