Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
sarah.grebing
ProofScriptParser
Commits
3fa31c5c
Commit
3fa31c5c
authored
Nov 30, 2017
by
Alexander Weigl
Browse files
saveProof
parent
76c6ac67
Changes
1
Hide whitespace changes
Inline
Side-by-side
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/controller/DebuggerMain.java
View file @
3fa31c5c
...
...
@@ -782,8 +782,20 @@ public class DebuggerMain implements Initializable {
* @param actionEvent
*/
public
void
saveProof
(
ActionEvent
actionEvent
)
{
FileChooser
fc
=
new
FileChooser
();
File
file
=
fc
.
showOpenDialog
(
btnInteractiveMode
.
getScene
().
getWindow
());
if
(
file
!=
null
)
{
try
{
saveProof
(
file
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
}
}
LOGGER
.
error
(
"saveProof not implemented!!!"
);
public
void
saveProof
(
File
file
)
throws
IOException
{
if
(
FACADE
.
getProof
()
!=
null
)
FACADE
.
getProof
().
saveToFile
(
file
);
}
/**
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment