19 lines
444 B
Java
19 lines
444 B
Java
|
|
package com.coder.client.gui.selectProject;
|
||
|
|
|
||
|
|
public class ProjectListItem {
|
||
|
|
private String projectName;
|
||
|
|
private String type;
|
||
|
|
private String description;
|
||
|
|
|
||
|
|
public ProjectListItem(String projectName, String type, String description) {
|
||
|
|
this.projectName = projectName;
|
||
|
|
this.type = type;
|
||
|
|
this.description = description;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String toString(){
|
||
|
|
return "ProjectName="+projectName+", type="+type+", description="+description;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|