[获取Element所有子节点]
<p><strong>方法签名:</strong> </p>
<p><code>getAllChildOfElement(element)</code></p>
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取element的所有子节点</li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">element</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">object</td>
<td>Element对象</td>
</tr>
</tbody>
</table>
<p><strong>参数传入示例</strong></p>
<pre><code>###### element:
&lt;root&gt;
&lt;b count=2 totalCount=2&gt;
&lt;row&gt;
&lt;b2&gt;a&lt;/b2&gt;
&lt;b1&gt;1&lt;/b1&gt;
&lt;/row&gt;
&lt;row&gt;
&lt;b2&gt;b&lt;/b2&gt;
&lt;b1&gt;1&lt;/b1&gt;
&lt;/row&gt;
&lt;/b&gt;
&lt;/root&gt;</code></pre>
<p><strong>函数调用示例</strong></p>
<pre><code>Element root = getRootElement(document); //获取document的根节点
if(root != null){
List&lt;Element&gt; chds = getAllChildOfElement(root); //获取root节点的子节点
for(Element e:chds){
if(e == null) continue;
println &quot;节点信息&quot;+e.toString();
}
}
</code></pre>
<p><strong>函数返回说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">List<Element></td>
<td>返回节点的子节点集</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code></code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>
</li>
</ul>