Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fip-simulateur-etape1_martin_elouan
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ROUXEL Martin
fip-simulateur-etape1_martin_elouan
Merge requests
!1
ajout de la classe SourceFixe et destination finale
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ajout de la classe SourceFixe et destination finale
Dev_branche_elouan
into
v1.0
Overview
4
Commits
2
Pipelines
0
Changes
2
All threads resolved!
Hide all comments
Merged
ROUXEL Martin
requested to merge
Dev_branche_elouan
into
v1.0
9 months ago
Overview
4
Commits
2
Pipelines
0
Changes
2
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
v1.0
version 1
57e12f40
9 months ago
v1.0 (base)
and
latest version
latest version
422b5653
2 commits,
9 months ago
version 1
57e12f40
1 commit,
9 months ago
2 files
+
47
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/destinations/DestinationFinale.java
0 → 100644
+
22
−
0
Options
package
destinations
;
import
information.Information
;
import
information.InformationNonConformeException
;
public
class
DestinationFinale
extends
Destination
<
Boolean
>
{
public
void
recevoir
(
Information
<
Boolean
>
information
)
throws
InformationNonConformeException
{
for
(
Boolean
valeur
:
information
){
try
{
informationRecue
.
add
(
valeur
);
}
catch
(
Exception
e
)
{
throw
new
InformationNonConformeException
();
}
}
}
}
Loading