📄 package.xhtml
字号:
<?xml version="1.0" encoding="utf-8" ?>
<html xmlns="http://www.xidea.org/taglib/xhtml"
xmlns:c="http://www.xidea.org/taglib/core">
<head>
<link rel="stylesheet" type="text/css" href="../styles/package.css" />
<meta http-equiv="Content-Type" content="text/html;utf-8" />
<title>Package Information:${packageInfo.name}</title>
</head>
<body>
<h2>↓${packageInfo.name}<span class="item-package"></span></h2>
<div class="package-source">
<table width="100%" cellpadding="0" border="0" cellspacing="0"
class="xidea--syntax-source">
<thead>
<tr>
<th colspan="2"></th>
</tr>
</thead>
<tbody>
<c:for var="line"
items="${packageInfo.getSourceEntry().parse().toArray()}">
<tr class="${for.index%2?'xidea-syntax-row1':'xidea-syntax-row0'}">
<td class="xidea-syntax-vrule0"><input type="button" value="${for.index+1}" /></td>
<td nowrap="true"><pre><c:out value="${line}"/></pre></td>
</tr>
</c:for>
</tbody>
</table>
</div>
<table width="98%" class="content" cellpadding="0" cellspacing="0">
<c:if test="${constructors.length}">
<tr>
<th>Constructor Name</th>
<th>File Path</th>
<th>Constructor Description</th>
</tr>
<c:for var="object" items="${constructors}">
<tr>
<td><a class="item-${object.type}"
href="?${object.getPath()}">${object.name}</a></td>
<td><a class="item-file"
href="?${object.fileInfo.getPath()}">${object.fileInfo.name}</a></td>
<td><c:out value="${object.docEntry.description}"/> </td>
</tr>
</c:for>
<tr class="space">
<td colspan="3"></td>
</tr>
</c:if>
<c:if test="${functions.length}">
<tr>
<th>Function Name</th>
<th>File Path</th>
<th>Function Description</th>
</tr>
<c:for var="object" items="${functions}">
<tr>
<td><a class="item-${object.type}"
href="?${object.getPath()}">${object.name}</a></td>
<td><a class="item-file"
href="?${object.fileInfo.getPath()}">${object.fileInfo.name}</a></td>
<td><c:out value="${object.docEntry.description}"/> </td>
</tr>
</c:for>
<tr class="space">
<td colspan="3"></td>
</tr>
</c:if>
<c:if test="${objects.length}">
<tr>
<th>Object Name</th>
<th>File Path</th>
<th>Object Description</th>
</tr>
<c:for var="object" items="${objects}">
<tr>
<td><a class="item-${object.type}"
href="?${object.getPath()}">${object.name}</a></td>
<td><a class="item-file"
href="?${object.fileInfo.getPath()}">${object.fileInfo.name}</a></td>
<td><c:out value="${object.docEntry.description}"/> </td>
</tr>
</c:for>
<tr class="space">
<td colspan="3"></td>
</tr>
</c:if>
</table>
<table width="98%" class="content" cellpadding="0" cellspacing="0">
<tr>
<th>File List</th>
<th>File Infomation</th>
</tr>
<c:for var="file" items="${files}">
<tr>
<td><a class="item-file"
href="?${file.getPath()}">${file.name}</a></td>
<td><c:out value="${file.getDescription()}"/></td>
</tr>
</c:for>
<tr class="space">
<td colspan="2"></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -