30 lines
592 B
Java
30 lines
592 B
Java
package com.coder.client.gui.selectProject;
|
|
|
|
class ProjectListItem {
|
|
private String name;
|
|
private String type;
|
|
private String description;
|
|
|
|
public ProjectListItem(String projectName, String type, String description) {
|
|
this.name = projectName;
|
|
this.type = type;
|
|
this.description = description;
|
|
}
|
|
|
|
public String getName(){
|
|
return this.name;
|
|
}
|
|
|
|
public String getType(){
|
|
return this.type;
|
|
}
|
|
|
|
public String getDescription(){
|
|
return this.description;
|
|
}
|
|
|
|
public String toString(){
|
|
return "PROJECT: ProjectName="+name+", type="+type+", description="+description;
|
|
}
|
|
|
|
}
|