Merge "Fix build errors in autorelease full clean build"
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.repository / src / main / webapp / WEB-INF / tags / componentinstancewithName.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 import="org.eclipse.winery.repository.resources.SubMenuData"%>
15 <%@tag description="Wrapper for component instances with a name. Name is also used for window title." 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 <%@attribute name="type" description="In case the component instance is a template, the link (a href) to the type is put here"%>
29
30 <%@attribute name="subMenus" required="false" type="java.util.List" %>
31
32 <t:componentinstance cssClass="${cssClass}" selected="${selected}" subMenus="<%=subMenus%>" image="${image}" libs="${libs}" implementationFor="${implementationFor}" twolines="${twolines}" type="${type}">
33 </t:componentinstance>