<?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:p="http://primefaces.org/ui"> <f:view contentType="text/html"> <h:head> <title>Kieker.WebGUI - Project Dependencies</title> <link rel="stylesheet" title="Standard-Stylesheet" type="text/css" href="../projectDependencies.css" /> </h:head> <body> <p:layout fullPage="true"> <p:layoutUnit header="Navigation" position="north" collapsible="true" resizable="true"> <!-- The control panel to get back. --> <h:form> Click <p:commandLink ajax="false" action="/main"> <h:outputText value="here" /> </p:commandLink> to get back to the main menu. </h:form> </p:layoutUnit> <p:layoutUnit header="Currently used Dependencies" position="center" > <div align="center"> <p:pickList id="pickList" value="#{selectedDependenciesBean.dependencies}" var="dependency" itemLabel="#{dependency}" itemValue="#{dependency}" > <f:facet name="sourceCaption">Available</f:facet> <f:facet name="targetCaption">Project</f:facet> </p:pickList> </div> </p:layoutUnit> </p:layout> </body> </f:view> </html>