Skip to content
Snippets Groups Projects
Commit 187fa53a authored by Nils Christian Ehmke's avatar Nils Christian Ehmke
Browse files

Minor bug fixing

parent 341191d3
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ public class Analysis {
final Method createMethod = this.classAndMethodContainer.getAnalysisControllerCreateAnalysisController();
final Object modelProject = ClassAndMethodContainer.invokeClassMethod(this.classAndMethodContainer.getAnalysisControllerLoadFromFile(), null,
projectFile);
projectFile.getAbsoluteFile());
final Object controllerAndMapping = ClassAndMethodContainer.invokeClassMethod(createMethod, null, modelProject, classLoader);
this.analysisController = ClassAndMethodContainer.invokeMethod(this.classAndMethodContainer.getAnalysisControllerWithMappingGetController(),
controllerAndMapping, null);
......
......@@ -65,9 +65,11 @@
<p:layoutUnit position="center" id="centerLayout">
<p:dataList style="height: 100%" id="logList" value="#{currentControllerBean.log}" var="entry" itemType="disc">
#{entry}
</p:dataList>
<h:form id="logList">
<ui:repeat value="#{currentControllerBean.log}" var="entry">
<h:outputText value="#{entry}"/><br/><br/>
</ui:repeat>
</h:form>
</p:layoutUnit>
<p:layoutUnit position="south" header="Control" resizable="true" collapsible="true">
......
......@@ -20,7 +20,7 @@
</p:column>
<p:column headerText="Options" style="text-align: center; width:40px">
<p:commandButton id="deleteButton" icon="ui-icon-trash"/>
<p:commandButton id="deleteButton" icon="ui-icon-trash" disabled="true"/>
<p:tooltip for="deleteButton" value="Delete Library"/>
</p:column>
</p:dataTable>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment