Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProgAvExercices
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
NAVES Guyslain
ProgAvExercices
0f7474b594b3d4ded1448a024716c1f5ce127f57
progavexercices
..
td6
Lens.java
Find file
Normal view
Permalink
Lens.java
89 B
Newer
Older
Blame preferences
Learn to ignore specific revisions
TD 6 généricité
Guyslain
committed
9 months ago
1
2
3
4
5
6
package
fr.univamu.progav.td6
;
public
interface
Lens
<
T
>
{
void
set
(
T
t
);
T
get
();
}