Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WebGUI
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kieker
WebGUI
Commits
d4c4a920
Commit
d4c4a920
authored
11 years ago
by
Nils Christian Ehmke
Browse files
Options
Downloads
Patches
Plain Diff
Localization
parent
24e97e3b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Kieker.WebGUI/src/main/java/kieker/webgui/web/beans/view/ControllerBean.java
+4
-4
4 additions, 4 deletions
...ain/java/kieker/webgui/web/beans/view/ControllerBean.java
with
4 additions
and
4 deletions
Kieker.WebGUI/src/main/java/kieker/webgui/web/beans/view/ControllerBean.java
+
4
−
4
View file @
d4c4a920
...
...
@@ -88,7 +88,7 @@ public final class ControllerBean {
this
.
addLogEntry
(
"The project does not exist."
);
}
catch
(
final
LockProjectException
ex
)
{
ControllerBean
.
LOG
.
info
(
"An error occured during the operation."
,
ex
);
this
.
addLogEntry
(
"An e
rror
o
ccured
during the operation."
);
this
.
addLogEntry
(
this
.
globalPropertiesBean
.
getLogMsgE
rror
O
ccured
()
);
}
}
...
...
@@ -98,7 +98,7 @@ public final class ControllerBean {
*/
public
void
stopAnalysis
()
{
try
{
this
.
addLogEntry
(
"
Stopping
Analysis
for project '"
+
this
.
projectName
+
"'"
);
this
.
addLogEntry
(
this
.
globalPropertiesBean
.
getLogMsg
StoppingAnalysis
()
);
synchronized
(
this
)
{
this
.
projectService
.
stopAnalysis
(
this
.
projectName
);
}
...
...
@@ -118,7 +118,7 @@ public final class ControllerBean {
* This method initializes the current analysis and informs the user about a fail.
*/
public
void
instantiateAnalysis
()
{
this
.
addLogEntry
(
"
Instantiating
Analysis
for project '"
+
this
.
projectName
+
"'"
);
this
.
addLogEntry
(
this
.
globalPropertiesBean
.
getLogMsg
InstantiatingAnalysis
()
);
try
{
this
.
projectService
.
initializeAnalysis
(
this
.
projectName
,
this
.
projectService
.
getClassLoader
(
this
.
projectName
,
this
));
// NOPMD (ClassLoader)
}
catch
(
final
InvalidAnalysisStateException
ex
)
{
...
...
@@ -143,7 +143,7 @@ public final class ControllerBean {
* This method cleans the current analysis instance.
*/
public
void
cleanAnalysis
()
{
this
.
addLogEntry
(
"Cleaning Analysis for project '"
+
this
.
projectName
+
"'"
);
this
.
addLogEntry
(
this
.
globalPropertiesBean
.
getLogMsgCleaning
()
);
try
{
this
.
projectService
.
cleanAnalysis
(
this
.
projectName
);
}
catch
(
final
ProjectNotExistingException
ex
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment