Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
graphic-2020
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RADELLAH Badr
graphic-2020
Compare revisions
master to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
r24025701/graphic-2020
Select target project
No results found
master
Select Git revision
Branches
master
1 result
Swap
Target
couetoux.b/graphic-2020
Select target project
b21228304/graphic-2020-2-0
l21221596/graphic-2020
c19014407/graphic-2020
b23019494/graphic-2020
g21212987/graphic-2020
couetoux.b/graphic-2020
s22029480/graphic-2020
c23025119/tp-3-graphique
m19023837/graphic-2020-tp-5
s22029480/graphic-tp-4
m19023837/graphic-2020-tp-7
n22021899/tp-3-programmation-conception
r24025701/graphic-2020
a23022716/exo-2-tp-3-algo
m23000189/graphic-2024
b21228304/graphic-2020
t21234458/graphic-2020
v23014723/graphic-2020
h22021483/graphic-2020
t21234458/graphic-2020-tiakout-khaled
m19023837/graphic-2020-chadi
b20031964/graphic-2020
22 results
master
Select Git revision
Branches
master
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
test
· 87ac2a7f
RADELLAH Badr
authored
8 months ago
87ac2a7f
test
· 91f7b264
RADELLAH Badr
authored
8 months ago
91f7b264
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.idea/misc.xml
+2
-1
2 additions, 1 deletion
.idea/misc.xml
src/main/java/serializer/DrawerWithSave.java
+3
-0
3 additions, 0 deletions
src/main/java/serializer/DrawerWithSave.java
with
5 additions
and
1 deletion
.idea/misc.xml
View file @
91f7b264
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ExternalStorageConfigurationManager"
enabled=
"true"
/>
<component
name=
"FrameworkDetectionExcludesConfiguration"
>
<file
type=
"web"
url=
"file://$PROJECT_DIR$"
/>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_11"
project-jdk-name=
"
corretto-16
"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_11"
project-jdk-name=
"
11
"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/out"
/>
</component>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/java/serializer/DrawerWithSave.java
View file @
91f7b264
...
...
@@ -25,6 +25,7 @@ public class DrawerWithSave extends state.Drawer {
try
{
ShapeWriter
.
write
(
file
,
super
.
shapes
);
}
catch
(
IOException
e
)
{
Alert
alert
=
new
Alert
(
Alert
.
AlertType
.
INFORMATION
);
alert
.
setTitle
(
"Error Dialog"
);
...
...
@@ -32,6 +33,8 @@ public class DrawerWithSave extends state.Drawer {
alert
.
setContentText
(
"Ooops, there was an error!"
);
alert
.
showAndWait
();
}
}
public
void
load
()
{
FileChooser
fileChooser
=
new
FileChooser
();
...
...
This diff is collapsed.
Click to expand it.