<%-- /******************************************************************************* * Copyright (c) 2012-2014 University of Stuttgart. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and the Apache License 2.0 which both accompany this distribution, * and are available at http://www.eclipse.org/legal/epl-v10.html * and http://www.apache.org/licenses/LICENSE-2.0 * * Contributors: * Oliver Kopp - initial API and implementation and/or initial documentation *******************************************************************************/ --%> <%@tag description="Registers the connection types to jsPlumb" pageEncoding="UTF-8"%> <%@attribute name="relationshipTypes" description="the known relationship types" required="true" type="java.util.Collection"%> <%@attribute name="relationshipTemplates" description="the relationship templates to render" required="true" type="java.util.Collection"%> <%@attribute name="ondone" description="JavaScript code executed when everything has been done" required="false"%> <%@attribute name="repositoryURL" required="true" %> <%@attribute name="readOnly" required="false" type="java.lang.Boolean"%> <%@tag import="java.util.Collection"%> <%@tag import="org.eclipse.winery.model.tosca.TRequirement"%> <%@tag import="org.eclipse.winery.model.tosca.TCapability"%> <%@tag import="org.eclipse.winery.model.tosca.TNodeTemplate"%> <%@tag import="org.eclipse.winery.model.tosca.TRelationshipType"%> <%@tag import="org.eclipse.winery.model.tosca.TRelationshipTemplate"%> <%@tag import="org.eclipse.winery.model.tosca.TRelationshipTemplate.SourceElement"%> <%@tag import="org.eclipse.winery.model.tosca.TRelationshipTemplate.TargetElement"%> <%@tag import="org.eclipse.winery.common.Util"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <% Collection relationshipTypesCasted = (Collection) relationshipTypes; Collection relationshipTemplatesCasted = (Collection) relationshipTemplates; %>