Add winery source code
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.topologymodeler / src / main / webapp / WEB-INF / tags / common / id_name_type.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="Dialog parts for name and type choosing" pageEncoding="UTF-8"%>
15
16 <%@taglib prefix="c"  uri="http://java.sun.com/jsp/jstl/core" %>
17 <%@taglib prefix="wc" uri="http://www.eclipse.org/winery/functions"%>
18 <%@taglib prefix="w"  tagdir="/WEB-INF/tags/common"%>
19
20
21 <%@attribute name="allTypes" required="true" type="java.util.Collection" description="Collection&lt;QName&gt; of all available types" %>
22 <%@attribute name="idPrefix" required="true" description="prefix used for name and type field. E.g., 'Req' becomes 'ReqType'."%>
23 <%@attribute name="hideIdField" required="false" description="if given, id field is not displayed. Quick hack to have this dialog reusable. Future versions might always show the id dialog and provide sync between name and id"%>
24
25         <c:if test="${not hideIdField}">
26                 <div class="form-group">
27                         <label for="${idPrefix}Id" class="control-label">Id:</label>
28                         <input id="${idPrefix}Id" class="form-control" name="${shortName}Name" type="text" required="required" disabled="disabled"/>
29                 </div>
30         </c:if>
31         <div class="form-group">
32                 <label for="${idPrefix}Name" class="control-label">Name:</label>
33                 <input id="${idPrefix}Name" class="form-control" name="${shortName}Name" type="text" required="required" />
34         </div>
35
36 <w:QNameChooser allQNames="${allTypes}" idOfSelectField="${idPrefix}Type" labelOfSelectField="Type" />