Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ApplicationGommette
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
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
Boris OUYA
ApplicationGommette
Commits
b94ca031
Commit
b94ca031
authored
3 years ago
by
Thomas Mewily
Browse files
Options
Downloads
Patches
Plain Diff
EleveEntity, GommetteEntity, ProfEntity
parent
22846b1e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/com/uca/entity/GommetteEntity.java
+26
-0
26 additions, 0 deletions
src/com/uca/entity/GommetteEntity.java
with
26 additions
and
0 deletions
src/com/uca/entity/GommetteEntity.java
0 → 100644
+
26
−
0
View file @
b94ca031
package
com.uca.entity
;
import
java.sql.Timestamp
;
public
class
GommetteEntity
{
private
int
id
;
public
int
getId
()
{
return
id
;
}
public
void
setId
(
int
value
)
{
id
=
value
;
}
private
String
nom
;
public
String
getNom
()
{
return
nom
;
}
public
void
setNom
(
String
value
)
{
nom
=
value
;
}
public
enum
Couleur
{
Verte
,
Rouge
,
Blanc
,
ArcEnCiel
}
private
Couleur
couleur
;
public
Couleur
getCouleur
()
{
return
couleur
;
}
public
void
setCouleur
(
Couleur
value
)
{
couleur
=
value
;
}
private
String
description
;
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
value
)
{
description
=
value
;
}
public
GommetteEntity
(){
//Ignored !
}
}
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