From 5973df556f494a4e4bfb79e10b63450b5b9e9c21 Mon Sep 17 00:00:00 2001 From: Nils Christian Ehmke <nie@informatik.uni-kiel.de> Date: Sun, 29 Jul 2012 13:37:07 +0200 Subject: [PATCH] Replaced some components; Removed some bugs --- .../session/CurrentAnalysisEditorBean.java | 16 ++++++++++++ .../java/kieker/webgui/common/ACManager.java | 2 ++ .../src/main/webapp/AnalysisEditor.xhtml | 25 ++++++------------- 3 files changed, 26 insertions(+), 17 deletions(-) diff --git a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentAnalysisEditorBean.java b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentAnalysisEditorBean.java index 21ce6c73..bd79c6a5 100644 --- a/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentAnalysisEditorBean.java +++ b/Kieker.WebGUI/src/main/java/kieker/webgui/beans/session/CurrentAnalysisEditorBean.java @@ -602,6 +602,10 @@ public final class CurrentAnalysisEditorBean implements IProjectBean { CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the displays of the plugin.", ex); CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the displays of the plugin."); return false; + } catch (final NoClassDefFoundError ex) { + CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the displays of the plugin.", ex); + CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the displays of the plugin."); + return false; } } } @@ -669,6 +673,10 @@ public final class CurrentAnalysisEditorBean implements IProjectBean { CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the ports of the plugin.", ex); CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the ports of the plugin."); return false; + } catch (final NoClassDefFoundError ex) { + CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the ports of the plugin.", ex); + CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the ports of the plugin."); + return false; } } } @@ -709,6 +717,10 @@ public final class CurrentAnalysisEditorBean implements IProjectBean { CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the properties of the repository.", ex); CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the properties of the repository."); return false; + } catch (final NoClassDefFoundError ex) { + CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the properties of the repository.", ex); + CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the properties of the repository."); + return false; } } @@ -748,6 +760,10 @@ public final class CurrentAnalysisEditorBean implements IProjectBean { CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the properties of the plugin.", ex); CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the properties of the plugin."); return false; + } catch (final NoClassDefFoundError ex) { + CurrentAnalysisEditorBean.LOG.error("An errcor occured while loading the properties of the plugin.", ex); + CurrentAnalysisEditorBean.showMessage(FacesMessage.SEVERITY_ERROR, "An errcor occured while loading the properties of the plugin."); + return false; } } diff --git a/Kieker.WebGUI/src/main/java/kieker/webgui/common/ACManager.java b/Kieker.WebGUI/src/main/java/kieker/webgui/common/ACManager.java index fe136c58..56d6bd55 100644 --- a/Kieker.WebGUI/src/main/java/kieker/webgui/common/ACManager.java +++ b/Kieker.WebGUI/src/main/java/kieker/webgui/common/ACManager.java @@ -325,8 +325,10 @@ public final class ACManager { // NOCS (Class Data Abstraction Coupling) this.controller.getController().run(); } catch (final IllegalStateException ex) { ACManager.LOG.error("An error occured while starting the analysis.", ex); + ex.printStackTrace(); } catch (final AnalysisConfigurationException ex) { ACManager.LOG.error("An error occured while starting the analysis.", ex); + ex.printStackTrace(); } } } diff --git a/Kieker.WebGUI/src/main/webapp/AnalysisEditor.xhtml b/Kieker.WebGUI/src/main/webapp/AnalysisEditor.xhtml index bf2d36a3..4a667acf 100644 --- a/Kieker.WebGUI/src/main/webapp/AnalysisEditor.xhtml +++ b/Kieker.WebGUI/src/main/webapp/AnalysisEditor.xhtml @@ -120,23 +120,14 @@ </p:column> <p:column headerText="Value" style="width:125px"> - <p:cellEditor> - <f:facet name="output"> - <h:outputText value="#{property.value}" rendered="#{not stringBean.checkString(property)}"/> - <h:outputText value="#{currentAnalysisEditorBean.selectedPlugin.name}" rendered="#{stringBean.checkString(property)}"/> - </f:facet> - <f:facet name="input"> - <h:inputText value="#{property.value}" rendered="#{not stringBean.checkString(property)}"/> - <h:inputText value="#{currentAnalysisEditorBean.selectedPlugin.name}" rendered="#{stringBean.checkString(property)}"/> - </f:facet> - </p:cellEditor> - </p:column> - - <p:column headerText="Options" style="width:50px"> - <p:rowEditor /> - </p:column> - - <p:ajax event="rowEdit" update=":centerForm" /> + <p:inplace editor="true" rendered="#{not stringBean.checkString(property)}"> + <p:inputText value="#{property.value}" /> + </p:inplace> + <p:inplace editor="true" rendered="#{stringBean.checkString(property)}" > + <p:inputText value="#{currentAnalysisEditorBean.selectedPlugin.name}" /> + <p:ajax event="save" update=":centerForm" /> + </p:inplace> + </p:column> </p:dataTable> </h:form> </p:layoutUnit> -- GitLab