📄 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>
<base href="${$JSI.scriptBase}org/xidea/jsdoc/" target="content" />
<link rel="stylesheet" type="text/css" href="${css}" />
<meta http-equiv="Content-Type" content="text/html;utf-8" />
<title>Package Information:${packageInfo.name}</title>
</head>
<body>
<h2>Package:${packageInfo.name}</h2>
<div class="pkg-source">
<table width="100%" cellpadding="0" border="0" cellspacing="0"
class="xidea--syntax-source">
<thead>
<tr>
<th colspan="2"></th>
</tr>
</thead>
<tbody>
<c:forEach var="line"
items="${packageInfo.getSourceEntry().buildLineIterator()}" varStatus="i">
<tr class="${i.index%2?'xidea--syntax-row1':'xidea--syntax-row0'}">
<td class="xidea--syntax-vrule0"><input type="button" value="${i.index+1}" /></td>
<td nowrap="true"><c:script>
context.print('<pre>');
context.print(line);
context.print('</pre>');
</c:script></td>
</tr>
</c:forEach>
</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:forEach var="obj" items="${constructors}">
<tr>
<td><a class="obj-${obj.getType()}"
onclick="return parent.jsdoc.gen({cmd:'genObject',args:['${obj.name}','${obj.fileInfo.pkgInfo.name}']},'${obj.name}')"
href="#">${obj.name}</a></td>
<td><a
onclick="return parent.jsdoc.gen({cmd:'genFile',args:['${obj.fileInfo.name}','${obj.fileInfo.pkgInfo.name}']},'')"
href="#">${obj.fileInfo.name}</a></td>
<td>${obj.docEntry.description||' '}</td>
</tr>
</c:forEach>
<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:forEach var="obj" items="${functions}">
<tr>
<td><a class="obj-${obj.getType()}"
onclick="return parent.jsdoc.gen({cmd:'genObject',args:['${obj.name}','${obj.fileInfo.pkgInfo.name}']},'${obj.name}')"
href="#">${obj.name}</a></td>
<td><a
onclick="return parent.jsdoc.gen({cmd:'genFile',args:['${obj.fileInfo.name}','${obj.fileInfo.pkgInfo.name}']},'')"
href="#">${obj.fileInfo.name}</a></td>
<td>${obj.docEntry.description||' '}</td>
</tr>
</c:forEach>
<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:forEach var="obj" items="${objects}">
<tr>
<td><a class="obj-${obj.getType()}"
onclick="return parent.jsdoc.gen({cmd:'genObject',args:['${obj.name}','${obj.fileInfo.pkgInfo.name}']},'${obj.name}')"
href="#">${obj.name}</a></td>
<td><a
onclick="return parent.jsdoc.gen({cmd:'genFile',args:['${obj.fileInfo.name}','${obj.fileInfo.pkgInfo.name}']},'')"
href="#">${obj.fileInfo.name}</a></td>
<td>${obj.docEntry.description||' '}</td>
</tr>
</c:forEach>
<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:forEach var="file" items="${files}">
<tr>
<td><a class="obj-file"
onclick="return parent.jsdoc.gen({cmd:'genSource',args:['${file.name}','${file.pkgInfo.name}']},'')"
href="#">${file.name}</a></td>
<td><c:out value="${file.getDescription()}" default=" " escapeXml='false'/></td>
</tr>
</c:forEach>
<tr class="space">
<td colspan="2"></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -