a8ea2127713c91ccc550a7a44be5441ed0bcf087
[vfc/nfvo/wfengine.git] /
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 import="org.eclipse.winery.repository.resources.SubMenuData"%>
15 <%@tag description="Wrapper for component instances with name, derived from, abstract, final (equivalent to AbstractComponentInstanceWithName..." pageEncoding="UTF-8"%>
16
17 <%@taglib prefix="t" tagdir="/WEB-INF/tags" %>
18
19 <%@tag import="java.util.ArrayList"%>
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 <%@attribute name="implementationFor" %>
27 <%@attribute name="twolines" required="false" description="if set, two lines are required for the tabs"%>
28
29 <%@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."%>
30
31 <!-- add submenus after the submenus defined for the type -->
32 <%
33
34 if (subMenus == null) {
35         subMenus = new ArrayList(1);
36 }
37
38 SubMenuData data;
39
40 data = new SubMenuData("#inheritance", "Inheritance");
41 subMenus.add(data);
42 %>
43
44 <t:componentinstancewithName cssClass="${cssClass}" selected="${selected}" subMenus="<%=subMenus%>" image="${image}" libs="${libs}" implementationFor="${implementationFor}" twolines="${twolines}">
45 </t:componentinstancewithName>