constructor.xhtml

来自「原名JSPackager」· XHTML 代码 · 共 26 行

XHTML
26
字号
<?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="${css}" />
<meta http-equiv="Content-Type" content="text/html;utf-8" />
<title>Constructor Information:${objInfo.name}</title>
</head>
<body>
<c:if test="${objInfo.fileInfo.pkgInfo.name}">
	<h2><a
		onclick="return parent.jsdoc.gen({cmd:'genPackage',args:['${objInfo.fileInfo.pkgInfo.name}']})"
		href="#">${objInfo.fileInfo.pkgInfo.name}</a></h2>
</c:if>
<div><a class="obj-constructor">Object</a></div>
<c:forEach var='c' items="${objInfo.getInheritList()}" varStatus="i">
	<div class='inheritor' style="margin-left:${(1+i.index)*34}px;">
	<c:if test="${i.last}">
		<a class="obj-constructor"> ${c.name}</a>
	</c:if> <c:else>
		<a class="obj-constructor"
			onclick="return parent.jsdoc.gen({cmd:'genObject',args:['${c.name}','${c.fileInfo.pkgInfo.name}']},'${c.name}')"
			href="#"> ${c.name}</a>
	</c:else></div>
</c:forEach>
<h2>绫

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?