Merge "Fix build errors in autorelease full clean build"
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.repository / src / main / webapp / WEB-INF / tags / entitytemplate.tag
1 <%--
2 /*******************************************************************************
3  * Copyright (c) 2012-2013 University of Stuttgart.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * and the Apache License 2.0 which both accompany this distribution,
7  * and are available at http://www.eclipse.org/legal/epl-v10.html
8  * and http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Contributors:
11  *    Oliver Kopp - initial API and implementation and/or initial documentation
12  *******************************************************************************/
13 --%>
14 <%@tag description="Wrapper for instances of entity types" pageEncoding="UTF-8"%>
15
16 <%@taglib prefix="t" tagdir="/WEB-INF/tags" %>
17
18 <%@tag import="java.util.ArrayList"%>
19 <%@tag import="org.eclipse.winery.repository.resources.SubMenuData"%>
20
21 <!-- for the header -->
22 <%@attribute name="selected" required="true"%>
23 <%@attribute name="cssClass" required="true"%>
24 <%@attribute name="image" required="false"%>
25 <%@attribute name="libs" fragment="true" %>
26
27 <%@attribute name="subMenus" required="false" type="java.util.List" description="list of SubMenuData objects stating the content of the submenus. The first submenu is used as default page. Subpage #xml must not be included, it is added automatically."%>
28
29 <!-- add submenus after the submenus defined for the type-->
30 <%
31
32 if (subMenus == null) {
33         subMenus = new ArrayList<SubMenuData>(2);
34 }
35
36 SubMenuData data;
37
38 data = new SubMenuData("#properties", "Properties");
39 subMenus.add(data);
40 %>
41
42 <t:componentinstancewithName cssClass="${cssClass}" selected="${selected}" subMenus="<%=subMenus%>" image="${image}" libs="${libs}">
43 </t:componentinstancewithName>