1 11 package org.eclipse.ant.core; 12 13 14 19 20 public class ProjectInfo { 21 22 private String name = null; 23 private String description = null; 24 25 32 33 ProjectInfo(String name, String description) { 34 this.name = name == null ? "" : name; this.description = description; 36 } 37 38 43 public String getName() { 44 return name; 45 } 46 47 53 public String getDescription() { 54 return description; 55 } 56 } 57 | Popular Tags |