Skip to content
Snippets Groups Projects
Commit 7234ecc6 authored by Charlie Darques's avatar Charlie Darques
Browse files

rename du fichier

parent 01c1982a
No related branches found
No related tags found
No related merge requests found
package dto;
public class Thread {
private int threadID;
private String threadName;
// Constructor //
public Thread(int id, String name){
this.threadID = id;
this.threadName = name;
}
// Getter //
public int getId() {
return threadID;
}
public String getThreadName() {
return threadName;
}
// Setter //
public void setThreadID(int threadID) {
this.threadID = threadID;
}
public void setThreadName(String threadName) {
this.threadName = threadName;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment