the project list will now be populated with data from the server

This commit is contained in:
Daniel Collin 2015-10-21 14:23:00 +00:00
parent 3634a61ee5
commit bd77c2de28
10 changed files with 207 additions and 201 deletions

View file

@ -0,0 +1,18 @@
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;
}
}