Skip to content
Snippets Groups Projects
Commit 1e3ba08b authored by Thomas Mewily's avatar Thomas Mewily
Browse files

test2

parent b94ca031
No related branches found
No related tags found
No related merge requests found
Showing with 36 additions and 3 deletions
File added
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>starter-master</name>
<comment>Project starter-master created by Buildship.</comment>
<name>applicationgommette</name>
<comment>Project applicationgommette created by Buildship.</comment>
<projects>
</projects>
<buildSpec>
......@@ -22,7 +22,7 @@
</natures>
<filteredResources>
<filter>
<id>1649225246325</id>
<id>1649230617553</id>
<name></name>
<type>30</type>
<matcher>
......
No preview for this file type
.\gradlew run
No preview for this file type
File added
File added
File added
File added
File added
package com.uca.entity;
import java.sql.Timestamp;
import com.uca.entity.UserEntity;
public class EleveEntity extends UserEntity {
private Date naissance;
public Date getNnaissance() { return naissance; }
public void setNaissance(Date value) { naissance = value; }
private String nomClasse;
public String getNomClasse() { return nomClasse; }
public void setNomClasse(String value) { nomClasse = value; }
public EleveEntity(){
//Ignored !
}
}
package com.uca.entity;
import java.sql.Timestamp;
import com.uca.entity.UserEntity;
public class ProfEntity extends UserEntity {
private String Username;
public String getUsername() { return Username; }
public void setUsername(String value) { Username = value; }
public ProfEntity(){
//Ignored !
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment